不同的方法也可以做出一样的效果,呵呵哒(却不能提交)
#include <stdio.h>
#include <string.h>
int main()
{
char s1[100]="";
char s2[]="我爱,";
char s3[]="慕课网";
/*在以下补全代码*/
strcat(s1,s2);
strcat(s1,s3);
printf("%s\n",s1);
return 0;
}2016-01-03
举报