【简答题】写出程序运行结果: #include #include main( ) { char d[20]="Golden Global"; char s[5]=" View"; strcat(d,s); printf("%s",d); }
【简答题】写出程序的运行结果: #include #include main( ) { char d[20]="Golden Global"; char s[5]=" View"; strcat(d,s); printf("%s",d); }
【简答题】#include #include void fun(char s[], char t[]) { } main() { char s[100], t[100]; printf("\nPlease enter string S:"); scanf("%s", s); fun(s, t); printf("\nThe result is: %s\n", t); }
【简答题】void main( ) { char a[]="I love CHINA!"; char *str=a; str++; printf("%s",str); a[3]='i'; printf("%s",str); } 运行结果: ( )