錯U
2020-08-14 17:41
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
还需要把test.c里面say改成static,就成功了
C语言入门
926020 学习 · 20793 问题
相似问题