In C, you have to declare the length of an array:
int myArray[100];
But when you're dealing with char
s 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?