#include
#include "test.c" //引用test.c文件 extern int printLine() //这里定义的方法对吗?( void 不能使用return 0) { printf("**************\n"); }test 里面
#include <stdio.h>
void printLine();
static void say()
{
完美解决大概
#include <stdio.h>
#include "test.c" //引用test.c文件
extern int printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}