问答详情
源自:5-13 内部函数与外部函数

为什么这样是对的?

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

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

{

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

}

int main()

{

    say();

    return 0;

}


提问者:suovee 2019-09-14 23:36

个回答

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

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

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