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

来源:5-13 内部函数与外部函数

慕盖茨4222327

2018-06-02 22:04


#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"  的引用?????

写回答 关注

1回答

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

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

C语言入门

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

926207 学习 · 20797 问题

查看课程

相似问题