A.strcpy(str1,str2)
B.表达式strcmp(str1,str2)的值大于0
C.str1=str2
D.表达式strlen(str1)的值为6
第1题:
若有定义int s[4][5],(*ps)[5]=s;则对s数组元素的正确引用是()。
A.ps+1
B.*(ps+3)
C.ps[0][2]
D.*(ps+1)+3
第2题:
若有语句;char str1[8],str2[8]={"hello!"}; 则能将字符串hello!赋给str1的正确语句是_____
A.str1=str2
B.strcpy(str1,str2)
C.str1==str2
D.strcpy(str2,str1)
第3题:
设有char str1[10],str2[10],c1;,则下列语句正确的是
A.str1={"china"};str2=str1;
B.c1="ab";
C.str1={"china"};str2={"people"};strcpy(str1,str2);
D.c1='a';
第4题:
库函数strcpy用以复制字符串。若有以下定义和语句: char str1[ ]="GREETING",str2[8],*str3,*str4="GREETING"; 则对库函数strcpy的不正确调用是 ()
A.strcpy(str2,"HELLO2");
B.strcpy(str3,"HELLO3");
C.strcpy(str4,"HELLO4");
D.都不正确
第5题:
3、库函数strcpy用以复制字符串。若有以下定义和语句: char str1[ ]="GREETING",str2[8],*str3,*str4="GREETING"; 则对库函数strcpy的不正确调用是 ()
A.strcpy(str2,"HELLO2");
B.strcpy(str3,"HELLO3");
C.strcpy(str4,"HELLO4");
D.都不正确