Почему вот это работает
#include <math.h>
int main()
{
pow(3.5,2.6);
return 0;
}
А здесь вылетает ошибка?
#include <math.h>
int main()
{
double a,b;
pow(a,b);
return 0;
}
/tmp/ccWxDnQ2.o: In function `main':
temp.c:(.text+0x1b): undefined reference to `pow'
collect2: ld returned 1 exit status