I thought the elements an array were like those in VB - - which is what I'm migrating from(I should have known better... ), in other words:

myarray[3] declares an array of 4 elements, 0, 1, 2 and 3.

Do you mean that in C/C++, myarray[3] declares an array of 3 elements, 0, 1 and 2?

Thanks for the response.
Jason