字符串复制函数使用的形式是()。 A: strcpy(c1c2); B: strcpy(c1[2],c2[4]); C: strcpy(c1,c2);
字符串复制函数使用的形式是()。 A: strcpy(c1c2); B: strcpy(c1[2],c2[4]); C: strcpy(c1,c2);
main() {chararr[2][4]; strcpy(arr,”you”);strcpy(arr[1],”me”); arr[0][3]=’&’; printf(“%s”,arr);}
main() {chararr[2][4]; strcpy(arr,”you”);strcpy(arr[1],”me”); arr[0][3]=’&’; printf(“%s”,arr);}
main(){char arr[2][4];strcpy(arr,”you...printf(“%s”,arr); }
main(){char arr[2][4];strcpy(arr,”you...printf(“%s”,arr); }
char a[7]=abcdef, b[4]=ABC;strcpy(a,b);此时,a[5]的值为___________。
char a[7]=abcdef, b[4]=ABC;strcpy(a,b);此时,a[5]的值为___________。
以下与库函数strcpy(char*p1,char*p2)功能不等的程序段是: strcpy1(char *p1,char *p2) {while ((*p1++=*p2++)!='\0');}|strcpy2(char *p1,char *p2) {while ((*p1=*p2)!='\0'){p1++;p2++;}}|strcpy3(char *p1,char *p2) {while (*p1++=*p2++);}|strcpy4(char *p1,char *p2) {while (*p2) *p1++=*p2++;}
以下与库函数strcpy(char*p1,char*p2)功能不等的程序段是: strcpy1(char *p1,char *p2) {while ((*p1++=*p2++)!='\0');}|strcpy2(char *p1,char *p2) {while ((*p1=*p2)!='\0'){p1++;p2++;}}|strcpy3(char *p1,char *p2) {while (*p1++=*p2++);}|strcpy4(char *p1,char *p2) {while (*p2) *p1++=*p2++;}
字符串"\\\"ABCDEn"\"\\"的长度是()。 A: strcpy(str2,str1) B: strcpy(str3,str1) C: strcpy(str4,str1) D: strcpy(str5,str1)
字符串"\\\"ABCDEn"\"\\"的长度是()。 A: strcpy(str2,str1) B: strcpy(str3,str1) C: strcpy(str4,str1) D: strcpy(str5,str1)