#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
say();
return 0;
hello.c从test.c调用函数,所以是extern test.c要设置一个静态函数,所以加static
注意观察一下编写时左上角有个test.c,不是hello.c