Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对函数声明有疑问:
我在 bc 中声明了一个函数
//b.c void getNumber(); //common header common.h
在交流中,我这样使用它://ac
#include "common.h" void getInfo() { getNumber(); }
但它抱怨 getNumber 是函数的隐式声明,这是什么原因?
将以下行添加到common.h
common.h
void getNumber();
bc 文件应该以这种方式包含函数定义
void getNumber() { .... }