#include <stdio.h> test.c //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
say();
return 0;
#include <stdio.h> test.c 与 #include <stdio.h> 等价 编译器只取 <stdio.h> ,后面的会被扔掉。
另:一个#include 只能引用一个h文件。