• 2021-04-14 问题

    以下程序的运行结果是charp[20]={'a','b','c','d'};charq[]="abc",r[]="abcde";strcpy(p+strlen(q),r);strcat(p,q);printf("%d,%d ",sizeof(p),strlen(p));

    以下程序的运行结果是charp[20]={'a','b','c','d'};charq[]="abc",r[]="abcde";strcpy(p+strlen(q),r);strcat(p,q);printf("%d,%d ",sizeof(p),strlen(p));

  • 2022-05-27 问题

    有以下程序,程序运行后的输出结果是( )。 main() { char p[20]={'a','b','c','d'}, q[]="abc", r[]="abcde"; strcat(p, r); strcpy(p+strlen(q), q); printf("%d\n", strlen(p)); } A: 9 B: 6 C: 11 D: 7

    有以下程序,程序运行后的输出结果是( )。 main() { char p[20]={'a','b','c','d'}, q[]="abc", r[]="abcde"; strcat(p, r); strcpy(p+strlen(q), q); printf("%d\n", strlen(p)); } A: 9 B: 6 C: 11 D: 7

  • 2022-05-27 问题

    有以下程序 #include main( ) char p[20]=’a’,’b’,’c’,’d’,q[ ]="abc",r[ ]="abcde’; strcat(p,r) ;strcpy(p+strlen(q),q); printf("%d\n",strlen(p)); 程序运行后的输出结果是 A: A)9 B: B)6 C: C)11 D: D)7

    有以下程序 #include main( ) char p[20]=’a’,’b’,’c’,’d’,q[ ]="abc",r[ ]="abcde’; strcat(p,r) ;strcpy(p+strlen(q),q); printf("%d\n",strlen(p)); 程序运行后的输出结果是 A: A)9 B: B)6 C: C)11 D: D)7

  • 2022-06-09 问题

    #include “string.h”main(){ char p[20]={‘a’,’b’,’c’,’d’}; char q[ ]=“abc”,r[ ]=“abcde”; strcpy(p+strlen(q),r); strcat(p,q);puts(p);}程序的输出结果为 。

    #include “string.h”main(){ char p[20]={‘a’,’b’,’c’,’d’}; char q[ ]=“abc”,r[ ]=“abcde”; strcpy(p+strlen(q),r); strcat(p,q);puts(p);}程序的输出结果为 。

  • 2021-04-14 问题

    下面程序段的运行结果是().char*p="abcdefgh";p+=3;printf("%d\n",strlen(strcpy(p,"ABCD")));

    下面程序段的运行结果是().char*p="abcdefgh";p+=3;printf("%d\n",strlen(strcpy(p,"ABCD")));

  • 2021-04-14 问题

    设有定义 char str[]=”game_over”,*p=&str[0]; 则语句printf(“%d,%d”,sizeof[str],strlen(p)) 的输出结果是_____.

    设有定义 char str[]=”game_over”,*p=&str[0]; 则语句printf(“%d,%d”,sizeof[str],strlen(p)) 的输出结果是_____.

  • 2021-04-14 问题

    以下程序的输出结果是 _[13]_______ . #include #include char *fun(char *t) { char *p=t; return(p+strlen(t)/2); } main() { char *str="abcdefgh"; str=fun(str); puts(str); }

    以下程序的输出结果是 _[13]_______ . #include #include char *fun(char *t) { char *p=t; return(p+strlen(t)/2); } main() { char *str="abcdefgh"; str=fun(str); puts(str); }

  • 2021-04-14 问题

    中国大学MOOC: 有如下的语句:charp[]="hello!";charq[10]={h,e,l,l,o,!};printf("%d%d",strlen(p),strlen(q));则下面输出正确的是( )。

    中国大学MOOC: 有如下的语句:charp[]="hello!";charq[10]={h,e,l,l,o,!};printf("%d%d",strlen(p),strlen(q));则下面输出正确的是( )。

  • 2021-04-14 问题

    中国大学MOOC:有如下的语句:charp[]="hello!";charq[10]={h,e,l,l,o,!};printf("%d%d",strlen(p),strlen(q));则下面输出正确的是()。

    中国大学MOOC:有如下的语句:charp[]="hello!";charq[10]={h,e,l,l,o,!};printf("%d%d",strlen(p),strlen(q));则下面输出正确的是()。

  • 2021-04-14 问题

    有以下程序#include#includemain(){charstr[][20]={“One*World”,“One*Dream!”},*p=str[1];printf(“%d,”,strlen(p));printf(“%s ”,p);}程序运行后的输出结果是

    有以下程序#include#includemain(){charstr[][20]={“One*World”,“One*Dream!”},*p=str[1];printf(“%d,”,strlen(p));printf(“%s ”,p);}程序运行后的输出结果是

  • 1 2 3 4 5 6 7 8 9 10