s1要有足够的空间来容纳要复制的字符串???
char s1[7]="hello ";
printf("%d\n",strlen(s1));
char s2[]="world";
strcat(s1,s2);
printf("%s\n",s1);
这样为什么不报错
char s1[7]="hello ";
printf("%d\n",strlen(s1));
char s2[]="world";
strcat(s1,s2);
printf("%s\n",s1);
这样为什么不报错
2017-05-03
举报