_夏日凉风_
2016-01-30 12:07
#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; }
char s2[]="我爱,";这样写就默认了s2的长度 你在cat往后面加就溢出了
C语言入门
926022 学习 · 20793 问题
相似问题