LINUX.ORG.RU

[1][lg:pn][~/tmp]$ cat t.c
#include "math.h"
main()
{
   printf("%f\n", pow(2, 4));
}
[0][lg:pn][~/tmp]$ gcc -o t t.c
/tmp/ccOdOuYB.o: In function `main':
/tmp/ccOdOuYB.o(.text+0x22): undefined reference to `pow'
[1][lg:pn][~/tmp]$ gcc -o t t.c -lm
[0][lg:pn][~/tmp]$ ./t
16.000000
[10][lg:pn][~/tmp]$ 

lg ★★
()
Ответ на: комментарий от lg

Не ответ! Но меня смущают две вещи:

#include "math.h" main() { printf("%f\n", pow(2, 4)); }

исправить на #include <stdio.h> #include <math.h> main() { printf("%f\n", pow(2, 4)); }

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.