西边有星
2017-08-03 11:56
#include <stdio.h>
#include <string.h>为什么要加上这个?
int main()
{
char s1[100]="";
char s2[]="我爱,";
char s3[]="慕课网";
/*在以下补全代码*/
strcpy(s1,s2);
strcat(s1,s3);
printf("%s\n",s1);
return 0;
}
这是定义字符串的函数
C语言入门
926020 学习 · 20793 问题
相似问题