545: Highlights
Character strings are stored as one-dimensional character arrays terminated by the null character.
If
you want to declare a variable whose value is a string,
then
instantiate the following pattern:
char *
variable name
=
character string
;
If
a function is to return a string,
then
declare that its return type is a character pointer by instantiating the following pattern:
char*
function name
...