先strcat(s2,s3),然后strcpy(s1,s2)
char s1[100] = "";
char s2[] = "helo";
char s3[] = "wold";
strcat(s2, s3);
strcpy(s1, s2);
printf("%s", s1);
我在vs2013里运行能看到结果, 这里不行。
char s1[100] = "";
char s2[] = "helo";
char s3[] = "wold";
strcat(s2, s3);
strcpy(s1, s2);
printf("%s", s1);
我在vs2013里运行能看到结果, 这里不行。
2015-08-19
举报