问题:
A、C中的字符串是作为字符数组来处理的
B、C语言规定:以‘\0’作为字符串结束标志
C、char str[]={"hello\nworld!"}; puts(str); 输出: hello\n world!
D、可以利用strlen(字符数组)测试字符串的长度
相关内容