sqrt((float)-10)
#include <stdio.h>
#include <math.h>
int main (void)
{
float x;
x = sqrt((float)-10);
printf ("%f\n", x);
return 0;
}
#include <stdio.h>
#include <math.h>
int main (void)
{
float x;
x = -sqrt((float)10);
printf ("%f\n", x);
return 0;
}