搜索

首页  >  问答  >  正文

c++ - C语言中多文件函数调用是否可以不加extern?

以下两段代码,为什么gcc在去掉extern声明后仍然可以正常编译和运行(g++没通过),这是C允许的语法还是gcc对编译过程有自己特殊的处理方式?
main.c和function.c处于同一文件下
main.c

#include<stdio.h>

//extern void myFunction();
int main(){
    printf("this is a test\n");
    myFunction();
    return 0;
}

function.c

#include<stdio.h>

void myFunction(){
    printf("hahah");
}
PHP中文网PHP中文网2773 天前436

全部回复(1)我来回复

  • 迷茫

    迷茫2017-04-17 14:41:03

    https://segmentfault.com/q/10...

    回复
    0
  • 取消回复