为什么按这个代码输出会得到两列*号呢?
麻烦大佬给我解释一下这个代码的运行方式或者顺序
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
麻烦大佬给我解释一下这个代码的运行方式或者顺序
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
2019-01-19
举报