Звоните на помощь:
error: expected ‘)’ before ‘;’ token
(f = sqrt(pow(x, 3) - (2 * x));
^
Вам не хватает закрытия )
.Кстати, эта пара скоб здесь вообще не нужна:
if (x > 1 && x < 5) // <-- BTW, the corrected condition
{
f = sqrt(pow(x, 3)-(2*x));
printf("%d",f);
}
else
{ // <-- better to use braces symmetrically in if-else
printf("Its not possible to do this function");
}