First page Back Continue Last page Graphics
String Literals revisited
const char hello[] = { 'H', 'e', 'l', 'l', 'o', '\0' };
variable hello has the same meaning as the string literal "hello"
the end of string indicator allows the programmer to determine the end of the string.