#include <math.h>
double sqrt(double x);
float sqrtf(float x);
sqrt() computes the square root of x.
The square root of x. If x is negative, it returns 0 and sets errno to EDOM.
pow() and powf()