#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
say();
return 0;
同懵,到底是为什么?
#include "test.c" //引用test.c文件 这行注释掉