煌璃瞻
2019-11-02 09:53
//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>
void say(){
printLine();
printf("I love imooc\n");
printf("good good study!\n");
printf("day day up!\n");
printLine();
}
我去我的出毛病了?
程序是复制的你的,不能运行,
不行啊,我用dev运行不了
C语言入门
926020 学习 · 20793 问题
相似问题