#include <stdio.h>
//#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
say();
return 0;
但是没有include 的话, 怎么能使用里面的say()???
因为,不注释掉的话,就相当于printLine没有声明就先用了