关于字符串函数
#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;
}
这是我的代码 我的输出结果没问题 但这样对吗 那个拼接的可以这么写吗 他说s2要有足够的内存 这样会不会不够
#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;
}
这是我的代码 我的输出结果没问题 但这样对吗 那个拼接的可以这么写吗 他说s2要有足够的内存 这样会不会不够
2019-08-02
举报