我对 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
头文件中吗?我得到了同样的错误与 ABc2和其他三角函数。为什么?