Dickson_zhai
2017-09-13 21:29
#include <stdio.h>
//#include "test.c" //引用test.c文件
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
say();
return 0;
}
但是没有include 的话, 怎么能使用里面的say()???
因为,不注释掉的话,就相当于printLine没有声明就先用了
C语言入门
926021 学习 · 20793 问题
相似问题