c math.h sqrt

C
#include <math.h>
double sqrt(double arg);/*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*/
Source

Also in C: