Let Us C Solution | Chapter 15 Strings
Duration: 14:30 Min | Sep 10, 2023
In C, a string is a sequence of characters terminated with a null character '\0'. The null character is a special character that has the ASCII value 0. It is used to mark the end of a string.
Strings are declared as character arrays.
The str variable is a character array that can store 14 characters, including the null character. The characters in the string are enclosed in double quotes.