First page Back Continue Last page Graphics
C Strings
An array of characters
char my_name[12];
ALWAYS RESERVE ONE ELEMENT IN THE ARRAY FOR THE “END OF STRING” DESIGNATOR.
The last character in a string is a null character (ascii 0). Specified by '\0'.
There is a whole library supplied to handle C strings.