gpt4 book ai didi

c - 当我尝试编译我的代码时,即使与 'undefined reference to pow()' 链接时,我也会收到错误提示 '-lm'

转载 作者:太空宇宙 更新时间:2023-11-04 03:30:40 25 4
gpt4 key购买 nike

我正在我的程序中创建一个用户定义的函数,当我尝试使用 pow 函数时,编译器给我一个错误并说有一个 undefined reference到 pow()。我见过与此类似的问题,解决方案是在编译时添加 -lm。我已经这样做了,但它仍然有问题。它只发生在我的用户定义函数上,因为它在我将 pow 放入代码的 main 函数之前就起作用了。如果指数是 2 而不是 0.5,它也有效。谢谢你的帮助。

 #include<math.h>

float standard_deviation (float variance) {

float deviation = 0.0;
deviation = pow(variance, 0.5);

return deviation;
} /* mean */


float standard_error (float standard_deviation, int number_of_elements) {

return standard_deviation / pow(number_of_elements, 0.5);

} /* mean */

最佳答案

#include <math.h>
#include <stdio.h>

float standard_deviation (float variance)
{
float deviation = 0.0;
deviation = pow(variance, 0.5);
return deviation;
} /* mean */

float standard_error (float standard_deviation, int number_of_elements)
{
return standard_deviation / pow(number_of_elements, 0.5);
} /* mean */

int main(int argc, char *argv[])
{
printf ("%f\n", standard_deviation (1.0));
return 0;
}

像这样调用时编译没有任何问题:

gcc test10.c -o test10 -lm

如果您首先将 .c 编译为 .o 文件,则只需要在生成可执行文件的最后链接阶段使用 -lm。

关于c - 当我尝试编译我的代码时,即使与 'undefined reference to pow()' 链接时,我也会收到错误提示 '-lm',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36882891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com