c++调用c接口
c++调用 c 接口 定义 c 接口 1 2 3 4 5 6 7 8 // hello.c #include "hello.h" void helloworld() { printf("Hello World\n"); return; } 编译 c 生成 object 文件 1 gcc -c hello.c 定义头文件 hello.h 1 2 3 4 5 6 7 8 9 10 11 12 #include <stdio.h> #ifdef __cplusplus extern "C" { #endif