• 2022-06-07 问题

    字符串"\\\"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)

  • 2022-06-08 问题

    若有语句:chars1[]="apple1",s2[8],*s3,*s4="apple2";则对库函数strcpy错误调用的是______ A: strcpy(s1,"apple2"); B: strcpy(s4,"apple1"); C: strcpy(s3,"apple1"); D: strcpy("apple2",s2);

    若有语句:chars1[]="apple1",s2[8],*s3,*s4="apple2";则对库函数strcpy错误调用的是______ A: strcpy(s1,"apple2"); B: strcpy(s4,"apple1"); C: strcpy(s3,"apple1"); D: strcpy("apple2",s2);

  • 2021-04-14 问题

    #include<stdio.h>#include<string.h>voidmain(){chara[20],b[20];strcpy(a,"apple");strcpy(b,a);strcpy(a,"OK");puts(a);}(5.0分)

    #include<stdio.h>#include<string.h>voidmain(){chara[20],b[20];strcpy(a,"apple");strcpy(b,a);strcpy(a,"OK");puts(a);}(5.0分)

  • 2022-05-26 问题

    若有char str1&#91;&#93;="good",str2&#91;10&#93;,str3&#91;10&#93;="how";,使用 strcpy 函数进行无效操作的是 ____ A: strcpy(str2,str1) B: strcpy(str3,str2) C: strcpy(str2,&amp;str1[2]) D: strcpy(str3,str1)

    若有char str1&#91;&#93;="good",str2&#91;10&#93;,str3&#91;10&#93;="how";,使用 strcpy 函数进行无效操作的是 ____ A: strcpy(str2,str1) B: strcpy(str3,str2) C: strcpy(str2,&amp;str1[2]) D: strcpy(str3,str1)

  • 2022-07-28 问题

    字符串复制函数使用的形式是()。 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);

  • 2021-04-14 问题

    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);}

  • 2022-11-02 问题

    strcpy()和memcpy()的区别?

    strcpy()和memcpy()的区别?

  • 2022-06-19 问题

    设已有定义: char *st="how are you"; 下列程序段中正确的是______。 A) char a&#91;11&#93;, *p; strcpy(p=a+1,&st&#91;4&#93;); B) char a&#91;11&#93;; strcpy(++a, st); C) char a&#91;11&#93;; strcpy(a, st); D) char a&#91;&#93;, *p; strcpy(p=&a&#91;1&#93;,st+2);

    设已有定义: char *st="how are you"; 下列程序段中正确的是______。 A) char a&#91;11&#93;, *p; strcpy(p=a+1,&st&#91;4&#93;); B) char a&#91;11&#93;; strcpy(++a, st); C) char a&#91;11&#93;; strcpy(a, st); D) char a&#91;&#93;, *p; strcpy(p=&a&#91;1&#93;,st+2);

  • 2022-05-29 问题

    若有定义char s1&#91; &#93;= “HELLO”, s2&#91;8&#93; = “HELLO1”,s3&#91;80&#93;,*s4=s2; 则错误的是 A: strcpy(“s1”, “HELLO”); B: strcat(s2, “hello2”); C: strcpy(s3, “hello3”); D: strcpy(s4, “hello4”);

    若有定义char s1&#91; &#93;= “HELLO”, s2&#91;8&#93; = “HELLO1”,s3&#91;80&#93;,*s4=s2; 则错误的是 A: strcpy(“s1”, “HELLO”); B: strcat(s2, “hello2”); C: strcpy(s3, “hello3”); D: strcpy(s4, “hello4”);

  • 2021-04-14 问题

    分析以下4个strcpy函数,其功能是把字符串 s2复制到串s1中,正确的是()。 (1) strcpy(char s1[],char s2[]) { int i=0; while((s1[i]=s2[i])!='')i++; } (2) strcpy(char *s1,char *s2) { while(*s1++=*s2++); } (3) strcpy(char *s1,char *s2) { while((*s1=*s2)!=’’) { s1++; s2++; } } (4) strcpy(char *s1,char *s2) { while((*s1++=*s2++)!=‘’); }

    分析以下4个strcpy函数,其功能是把字符串 s2复制到串s1中,正确的是()。 (1) strcpy(char s1[],char s2[]) { int i=0; while((s1[i]=s2[i])!='')i++; } (2) strcpy(char *s1,char *s2) { while(*s1++=*s2++); } (3) strcpy(char *s1,char *s2) { while((*s1=*s2)!=’’) { s1++; s2++; } } (4) strcpy(char *s1,char *s2) { while((*s1++=*s2++)!=‘’); }

  • 1 2 3 4 5 6 7 8 9 10