strlen函数的应用
调用strlen("\1011\a\\0ed\0g")的返回值为什么是7啊调用strlen(ch\nina)是6
#include<stdio.h>
#include <string.h>
main()
{
char a="\011\a\\ed\0g";
printf("%d",strlen(a));
}运行是5 这个也不懂
我是小白是在看不懂这两道题strlen 不是碰到\0就截止了吗 {:10_269:}{:10_269:}{:10_269:}{:10_269:}{:10_269:} "\1011\a\\0ed\0g" ->[‘\101’, ‘1’, ‘\a’, ‘\\’, ‘0’, ‘e’, ‘d’, ‘\0’, ‘g’]
“ ch\nina” -> [‘c’, ‘h’, ‘\n’, ‘i’, ‘n’, ‘a’]
"\011\a\\ed\0g" -> [‘\011’, ‘\a’, ‘\\’, ‘e’, ‘d’, ‘\0’, ‘g’]
剩下的自己思考。 看的方式是对着单个字符来看的啊。
你把你的数组初始化的方式改一下
char a={'\0','11','\a','\\ed','\0','g'};
如果你改成这个样子,那么输出结果就是0了 转义搞清楚,然后知道 strlen: 计算字符串的长度, 不包括’\0’
你就知道了。。。 好的我懂了
页:
[1]