#E00512. 字符串的长度
字符串的长度
Input a string, output its length.
hello, world
12
We do not recommend you read the following content unless you encounter problems.
About compile error
Most string-related processing functions are in `string.h`. Make sure your program includes this header file.About extra answer
gets
fgets
etc. functions read the newline character\n
, causing the string length to be one more than its actual value. Handle it carefully.