In C, you have to declare the length of an array:
int myArray[100];
But when you're dealing with chars and strings, the length can be left blank:
char myString[] = "Hello, World!";
Does the compiler generate the length for you by looking at the string?
intarray either:int a[] = {1,2,3};– mhyfritz Jun 27 '11 at 18:15