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

admin2015-07-31  30

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

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

答案B

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

最新回复(0)