Linux C/C++編譯和使用so共享庫

本文給出一個Linux C 編譯和使用共享庫so的一個小例子。以下: 文件 my_math.c html // @file: my_math.c #include "my_math.h" int add(int a, int b) { return a + b; } // @file: my_math.h int add(int a, int b); 文件 test.clinux //
相關文章
相關標籤/搜索