Calculates the square root of the sum of squares of floating-point values (
).
double hypot(double x, double y);
float hypotf(float x, float y);
long double hypotl(long double x, long double y);
x, y Values for which the square root of the sum of squares of two parameters (
) is to be calculated
Normal: Square root of the sum of squares of two parameters (
)
Abnormal: Range error: Returns HUGE_VAL, HUGE_VALF, or HUGE_VALL depending on the function.