
The string in C programming language is a one-dimensional
array of characters which is terminated by a null character '\0'. Thus a
null-terminated string contains the characters that comprise the string
followed by a null.
C Programming
The declaration and initialization for creating a a word
"World".To determine the end of the string ,there is a symbol ('\0')
at...