#include main() { char *p="abcdeofghjik "; printf("%d
",strlen(p)); }
题目
#include main() { char *p="abcde\ofghjik\0"; printf("%d\n",strlen(p)); }
#include
main()
{ char *p="abcde\ofghjik\0";
printf("%d\n",strlen(p));
}程序运行后输出结果是
a12 b15 c6 d5
答案
a 12
abcde\ofghjik\0
共有12个字符
a,b,c,d,e,\o,f,g,h,j,i,k(‘\o'转义字符,表示空字符(NULL)’)
最后的'\0'为结束符,不算做字符串长度之内
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
最新试题
热门考点