私は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
なんで?