为什么一定要去掉对文件#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" 的引用?????