Veneno_zyn
2018-03-08 14:43
完全按照参考代码来的啊
去掉第二行啊!
hello.c的 {{#include "test.c" //引用test.c文件}} 这个删掉
hello.c
#include <stdio.h>
extern void printLine()
{
printf("**************\n");
}
void say();
int main()
{
say();
return 0;
}
test.c
#include <stdio.h>
extern void printLine();
void say(){
printLine();
printf("I love imooc\n");
printf("good good study!\n");
printf("day day up!\n");
printLine();
}
大哥啥都没有啊
看起来没毛病
C语言入门
926026 学习 · 20793 问题
相似问题