проблема с -nan(ind)
Не могу понять, почему пишет -nan(ind) в ответе
#include<stdio.h>
#include <math.h>
#include <windows.h>
#define x 1.6
#define h 1.6
void main()
{
double f, e;
SetConsoleOutputCP(1251);
SetConsoleCP(1251);
f = log(3 * x) - h;
e = pow(pow(f,3), 1 / 5.0);
printf("f=%f\t\te=%e\n", f, e);
printf("h=%f\t\tx=%e\n", x, h);