为什么不能连续的进行复制,在处理字符串时。
#include <stdio.h>
#include <string.h>
int main()
{
char s1[100];
char s2[]="我爱,";
char s3[]="慕课网";
strcat (s2,s3);
strcpy (s1,s2);
printf("%s\n",s1);
return 0;
}为什么s1不能输出结果
#include <stdio.h>
#include <string.h>
int main()
{
char s1[100];
char s2[]="我爱,";
char s3[]="慕课网";
strcat (s2,s3);
strcpy (s1,s2);
printf("%s\n",s1);
return 0;
}为什么s1不能输出结果
2016-12-17
举报