以下程序的输出结果是( )。 #include <stdio.h> #include <string.h> main() { char str[12]={’s’,’t’,’r’,’i’,’n’,’g’}; pr

admin2009-01-15  16

问题 以下程序的输出结果是(    )。    #include  <stdio.h>    #include <string.h>    main()    {  char str[12]={’s’,’t’,’r’,’i’,’n’,’g’};       printf("%d\n",strlen(str) );    }

选项 A、6
B、7
C、11
D、12

答案1

解析 本题考查求字符串的长度。程序中定义字符串str时中请了12个字节的内存空间,对它赋初值后,函数strlen在求串长度时,以’\0’作为串结束符,所以,strlen(str)的值为6。
转载请注明原文地址:https://kaotiyun.com/show/tLXp777K
0

随机试题
最新回复(0)