为什么这样是对的?

来源:5-13 内部函数与外部函数

suovee

2019-09-14 23:36

#include <stdio.h> test.c  //引用test.c文件

extern void printLine()     //这里定义的方法对吗?

{

   printf("**************\n");   

}

int main()

{

    say();

    return 0;

}


写回答 关注

1回答

  • 忘川之梦
    2019-09-15 23:09:07

    #include <stdio.h> test.c  与 #include <stdio.h> 等价 编译器只取 <stdio.h>  ,后面的会被扔掉。

    另:一个#include 只能引用一个h文件。

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926028 学习 · 20793 问题

查看课程

相似问题