NOTE:
The elements of the array are subscripted, starting with the
number zero.
NOTE:
Be sure to make the array size large enough to hold the string AND its null-terminating
character (\0). (There are 10 boxes needed to hold
"Wally Dog".)
NOTE: Never try to assign string values to character arrays using a regular assignment statement, except when you first declare the character array.
dogName[10] = "Wally
Dog"; //WON'T WORK!!!!!!!!!!!
|