慕函数3031282
2019-01-19 17:54
麻烦大佬给我解释一下这个代码的运行方式或者顺序
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
他引用了hello.c文件旁边另一个test.c文件,test.c文件中还有函数
C语言入门
926039 学习 · 20793 问题
相似问题