慕盖茨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" 的引用?????
因为一个项目中,不能有一个文件带入另一个文件中,不然会报错
C语言入门
926207 学习 · 20797 问题
相似问题
回答 1
回答 3