我是C语言的新手,我有以下代码:
#include <stdio.h>
#include <math.h>
int main(void)
{
double x = 0.5;
double result = sqrt(x);
printf("The square root of %lf is %lf\n", x, result);
return 0;
}
但是当我用以下命令编译时:
gcc test.c -o test
我收到这样的错误:
/tmp/cc58XvyX.o: In function `main':
test.c:(.text+0x2f): undefined reference to `sqrt'
collect2: ld returned 1 exit status
为什么会这样?是sqrt()不是在math.h头文件?我cosh和其他三角函数遇到相同的错误。为什么?
冉冉说
相关分类