课程
/后端开发
/C
/C语言入门
#include <stdio.h>#include "test.c" //引用test.c文件extern void printLine() //这里定义的方法对吗?{ printf("**************\n"); }int main(){ say(); return 0;}
2017-11-26
源自:C语言入门 5-13
正在回答
static void say()
你看这道题的输出样式,你还差printf("I love imooc")后面的你应该知道了
举报
C语言入门视频教程,带你进入编程世界的必修课-C语言
4 回答到底是hello.c调用test.c的,还是test.c调用hello.c的函数
2 回答第一段代码哪儿错了,第二段代码为什么是正确的
3 回答老师这段代码为什么错了?
3 回答hello.c调用test.c的问题,为什么说是两个say()?
2 回答test.c 这个程序的代码为什么看不到?