getSquareRoot function

double getSquareRoot(
  1. double real
)

Implementation

double getSquareRoot(
    double real
    )
{
    return sqrt( real );
}