#include
#include
main()
{
char p[]={‘a’,’b’,’c’};
q[10]={‘a’,’b’,’c’};
printf(“%d%d\n”,strlen(p),stren(q);
}
以下叙述中正确的是(B)
1.由于q数组中没有字符串结束符,长度不能确定,但P数组中字符串长度为3
2.由于p数组中没有字符串结束符,长度不能确定,但q数组中字符串长度为3
3.在给p和q数组置初值时,系统会为未赋初值的元素自动添加结束符,故输出的长度都为3
4.在给p和q数组中都没有字符串结束符,故长度不能确定