有以下程序: #include<stdio.h> #include<string.h> main() {charstr[][20]={"One*world","One*Dream!"},*p=str[1]; printf("%d,",strlen(p));

admin2021-06-15  21

问题 有以下程序:
#include<stdio.h>
#include<string.h>
main()
{charstr[][20]={"One*world","One*Dream!"},*p=str[1];
printf("%d,",strlen(p));printf("%s\n",p);
}
程序运行后的输出结果是(    )。

选项 A、10,One*Dream!
B、9,One*Dream!
C、9,One*World
D、10,One*World

答案A

解析 函数strlen(char*s);计算字符串s的长度,不包括’\0’在内;p指向数组的第二个元素,因此strlen(p)=10,并打印,故答案为A选项。
转载请注明原文地址:https://jikaoti.com/ti/0Wz0FFFM
0

相关试题推荐
随机试题
最新回复(0)