已知:chars[10],*p=s,则在下列语句中,错误的语句是()。 A.p=s+5;B.s=p+s;C.s[2]=p[4];D.*p=s[0];
已知:chars[10],*p=s,则在下列语句中,错误的语句是()。
A.p=s+5;
B.s=p+s;
C.s[2]=p[4];
D.*p=s[0];
相关考题:
下列各个选项中对字符数组赋字符串的语句中,错误的是( )。A.char s[10];s="program";B.char s[]="program";C.char s[10]="program";D.char s[10]; strcpy(s,"program");
下列是为字符数组赋字符串的语句组,其中错误是:A.char s[10]; s=”program”;B.char s[]=”program”;C.char s[10]=”Hello!”;D.char s[10];strcpy(s,”hello!”);
5、下列是为字符数组赋字符串的语句组,其中错误是:A.char s[10]; s=”program”;B.char s[]=”program”;C.char s[10]=”Hello!”;D.char s[10];strcpy(s,”hello!”);