Table of Contents
Previous Section Next Section

sqrt

#include <cmath>float sqrt(float num);double sqrt(double num);
long double sqrt(long double num);

The sqrt( ) function returns the square root of num. If it is called with a negative argument, a domain error will occur.

Related functions are exp( ), log( ), and pow( ).


Table of Contents
Previous Section Next Section