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

为什么要引用

#include "test.c"   //引用test.c文件

提问者:数码宝贝6夜瞳 2020-11-27 21:43

个回答

  • 影梦灵
    2020-12-19 15:17:37

    #include <stdio.h>

    #include "test.c"   //引用test.c文件

    extern  void printLine()     //这里定义的方法对吗?

    {

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

    }

    int main()

    {

        say();

        return 0;

    }

    这个怎么错了

  • qq_慕村2163153
    2020-12-17 11:19:52

    这个好像是要删除掉的.

    把他删除了就能够运行了