suovee
2019-09-14 23:36
#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文件。
C语言入门
926028 学习 · 20793 问题
相似问题