#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 errorMost string-related processing functions are in `string.h`. Make sure your program includes this header file.
About extra answergets fgets etc. functions read the newline character \n, causing the string length to be one more than its actual value. Handle it carefully.