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

为什么一定要去掉对文件#include "test.c" 的引用?????


#include <stdio.h>

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

void say(); //声明test.c文件say函数

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

{

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

}

int main()

{

    say();

    return 0;

}

为什么一定要去掉对文件#include "test.c"  的引用?????

提问者:慕盖茨4222327 2018-06-02 22:04

个回答

  • qq_狂神寂灭_0
    2018-06-03 11:54:42

    因为一个项目中,不能有一个文件带入另一个文件中,不然会报错