麻烦大佬给我解释一下这个代码的运行方式或者顺序
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
say();
return 0;
他引用了hello.c文件旁边另一个test.c文件,test.c文件中还有函数