weixin_慕少5205495
2020-12-23 08:24
#include <stdio.h>
#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
在hello.c里面
#include <stdio.h> #include "test.c" //引用test.c文件 extern void printLine() //这里定义的方法对吗? { printf("**************\n"); } int main() { say(); return 0; }
在test.c里面
#include <stdio.h> extern void printLine(); static void say() { printLine(); printf("I love imooc\n"); printf("good good study!\n"); printf("day day up!\n"); printLine(); }
感觉是网站的问题
C语言入门
926040 学习 · 20793 问题
相似问题