gpt4 book ai didi

c - 为什么在 C 中尝试使用来自 math.h 的日志时出现此错误?

转载 作者:太空狗 更新时间:2023-10-29 15:33:02 27 4
gpt4 key购买 nike

<分区>

我需要在程序中使用日志来完成作业。我在我的机器上运行了这个测试程序以查看日志功能是如何工作的(以及它是否会工作),并且在构建过程中出现以下错误。

代码

/* log example */
#include <stdio.h> /* printf */
#include <math.h> /* log */

int main()
{
double param, result;
param = 5.5;
result = log (param);
printf ("log(%f) = %f\n", param, result );
return 0;
}

错误

gcc -Wall -o "test" "test.c" (in directory: /home/linux/Development/codetest)
/tmp/ccCDqX7x.o: In function `main':
test.c:(.text+0x1b): undefined reference to `log'
collect2: ld returned 1 exit status
Compilation failed.

链接

这是从 tutorial 中抓取的 C99 代码网站。

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