#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; }
同样可以,只不过没按编者的要求罢了