若有以下程序段 charstr[4][12]={"aa","bbb","ccccc","d"},*strp[4]; inti; for(i=0;i<4;i++)strp[i]=str[i]; 不能正确引用字符串的选项是

admin2015-07-31  31

问题 若有以下程序段
charstr[4][12]={"aa","bbb","ccccc","d"},*strp[4];
inti;
for(i=0;i<4;i++)strp=str;
不能正确引用字符串的选项是

选项 A、str[0]
B、strp
C、strp[3]
D、*strp

答案B

解析 本题考查字符串指针作为函数参数,本题中p作为字符串指针传入fun中,p指向的内容并没有发生变化,所以选项B正确。
转载请注明原文地址:https://jikaoti.com/ti/Egi0FFFM
0

最新回复(0)