C language learning [7]-string

In C language, a string is actually a one-dimensional character array terminated by the null character'\0'. Therefore, a null-terminated string contains the characters that make up the string.
The C compiler will automatically put'\0' at the end of the string when initializing the array.
There are a large number of functions for manipulating strings in C:
Insert picture description here

Guess you like

Origin blog.csdn.net/qq_46009608/article/details/111143803