问答详情
源自:5-13 内部函数与外部函数

为什么我的提示运行失败

完全按照参考代码来的啊

提问者:Veneno_zyn 2018-03-08 14:43

个回答

  • 冒泡的鱼
    2018-04-16 00:20:48

    去掉第二行啊!

    hello.c的    {{#include "test.c"   //引用test.c文件}}   这个删掉

  • 慕仙8521504
    2018-03-16 16:03:33

    hello.c

    #include <stdio.h>

    extern void printLine()

    {

       printf("**************\n");   

    }

    void say();

    int main()

    {

        say();

        return 0;

    }

    test.c

    #include <stdio.h>

    extern void printLine();

    void say(){

        printLine();

        printf("I love imooc\n");

        printf("good good study!\n");

        printf("day day up!\n");

        printLine();

    }


  • qq_哈哈哈但愿长醉不复醒_0
    2018-03-13 00:15:13

    大哥啥都没有啊

  • 慕侠5767110
    2018-03-09 14:52:29

    看起来没毛病