qq_慕工程2543335
2020-04-05 11:44
那个第二个头文件是干什么用的呀
#include <stdio.h>
extern void printLine() //这里定义的方法对吗?
{
printf("**************\n");
}
int main()
{
void say(){
printLine();
printf("I love imooc\n");
printf("good good study!\n");
printf("day day up!\n");
printLine();
}
return 0;
}
这个是我运行成功的
#include "test.c" 是将test.c作为hello.c内部的文件,当使用了这个头文件,就不能使用extern了
C语言入门
926299 学习 · 20799 问题
相似问题