为什么这样不行,结果也是对的

来源:6-8 字符串函数

慕数据1474607

2020-03-25 11:15

#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;    

}


写回答 关注

1回答

  • Lollipop____
    2020-04-05 21:40:31

    这样是可以的,是这个在线编译器的问题

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926207 学习 · 20797 问题

查看课程

相似问题