下列程序的运行结果为【 】。 #include <stdio.h> main() { static char str1[40]; char str2140]; strcpy(str2,"China")

admin2013-02-23  47

问题 下列程序的运行结果为【  】。
    #include <stdio.h>
    main()
    {  static char str1[40];
       char str2140];
       strcpy(str2,"China");
       strcat(str1,str2);
       strcat(str1," is a great country  !");
       printf("%s %s ",str2,strl);
       printf("%d %d\n",strlen(str2),strlen(str1));
    }

选项

答案China,China is a great country ! 5 25

解析
转载请注明原文地址:https://kaotiyun.com/show/8lPp777K
0

最新回复(0)