C Math.H SQRT

/*function prototype of sqrt()*/
double sqrt(double arg);

/*sqrt() returns the square root of the number passed on to it
the function is available in the math.h library*/
caluthan