【简答题】写出程序运行结果: #include #include main( ) { char d[20]="Golden Global"; char s[5]=" View"; strcat(d,s); printf("%s",d); }
【单选题】当执行程序时,如果输入abc,则下面程序的输出结果是: void main() { char s[20]="12345"; scanf("%s",s); strcat(s,"6789"); printf("%s\n",s); }
【简答题】写出程序的运行结果: #include #include main( ) { char d[20]="Golden Global"; char s[5]=" View"; strcat(d,s); printf("%s",d); }
【简答题】void main( ) { char a[]="I love CHINA!"; char *str=a; str++; printf("%s",str); a[3]='i'; printf("%s",str); } 运行结果: ( )