标签: c extern
我已经声明了3个不同的文件,
extern "C" { void test(); }
#include "testExtern.h" void test() { //my code }
#include "testExtern.h" int main() { test(); return 0; }
在编译此代码时,它显示如下错误,
对test()的未定义引用
任何人都可以帮助我找出解决方案