未曾想当程序员 发表于 2020-10-22 06:12:10

关于pow的

在Linux上执行pow的时候,出现undefined reference to 'pow'。请问各位如何解决

xieglt 发表于 2020-10-22 08:29:40

要包含头文件
请加上 #include <math.h>

2269099035 发表于 2020-10-22 08:30:03

C语言的话,可能没有include<math.h>吧

baige 发表于 2020-10-22 10:56:57

gcc    ******-lm

未曾想当程序员 发表于 2020-10-22 12:22:46

文件里已经加了#include <stdio.h>了
我已经知道如何解决了,谢谢各位的解答。

gcc test.c(文件名) -ml -o test && ./test
页: [1]
查看完整版本: 关于pow的