• 2022-07-27
    下列语句中存在语法错误的是______。
    A: char t[6][20]; t[1] = "Game";
    B: char t[ ][20]={ "Game"};
    C: char *t[6]; t[1]= "Game";
    D: char t[ ]={ "Game"};
  • A

    内容

    • 0

      以下与库函数strcmp(char *s,char *t)功能相等的程序段是( )。? int strcmp3(char *s,char *t){ for ( ; *t==*s; ) { if (!*t) return 0 ; t++ ; s++ ; } return (*s-*t) ;}|int strcmp2(char *s,char *t){ for ( ; *s++==*t++; ) if (!*s) return 0 ; return (*s-*t) ;}|int strcmp1(char *s,char *t){ for ( ; *s++==*t++; ) if (*s=='\0') return 0 ; return (*s-*t) ;}|int strcmp4(char *s,char *t){ for ( ; *s==*t;s++,t++ ) if (!*s) return 0 ; return (*t-*s) ;}

    • 1

      中国大学MOOC: 下面程序 char * fun1(char *t,char *s){ while(*t=*s){s++,t++;} return t;}int main(){ char a[100]=Hello; char b[20]=NEU; char *t=NULL; t=fun1(a,b); printf(%s,t);}执行结果为

    • 2

      下面程序 char * fun1(char *t,char *s){ while(*t=*s){s++,t++;} return t;}int main(){ char a[100]="Hello"; char b[20]="NEU"; char *t=NULL; t=fun1(a,b); printf("%s",t);}执行结果为 A: HelloNEU B: Hello C: NEU D: 输出为空

    • 3

      以下正确的程序段是: char *s; scanf("%s", s);|char s[20], *t=s;scanf("%s", t[2]);|char s[20]; scanf("%s", &s);|char s[20]; scanf("%s", &s[2]);

    • 4

      1 can’t help thinking it would be fun to play such an exciting game with them.