单选题 若有以下程序段
char str[4][12]="aa","bbb","ccccc","d",*strp[4];
int i;
for(i=0;i<4;i++)strp[i]=str[i];
不能正确引用字符串的选项是______。
A.strp B.str[0] C.strp[3] D.*strp

【正确答案】 A
【答案解析】[解析] strp是字符串指针数组,不能作为字符串的引用。