Linux 中常用链接来解决一些库函数的问题。在编译时链接可以生成可执行文件。了解一些链接的基本过程,能让我们在开发中减去不少的麻烦! 编译时使用 gcc -lm 程序功能很简单,下面的示例展示了exp()函数的用法。 (代码一) #include #include //exp int main(int argc, char const *argv[]){ //double x = 0; printf(The exponential value of %lf is %lf\n, 0, exp(0)); printf(The exponential value of %