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

运行错误,需要讲解缺少什么

#include <stdio.h>

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

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

{

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

}

int main()

{

    say();

    return 0;

}


提问者:qq_慕仰3209192 2019-08-22 09:03

个回答

  • 慕瓜汁
    2019-11-27 21:10:11

    同懵,到底是为什么?

  • 小小疾飞
    2019-08-22 10:16:14

    #include "test.c"   //引用test.c文件   这行注释掉