hypot

Returns the square root of the sum of the squares of two arguments:

sqrt(x[2] + y[2])

Format

#include  <math.h>

double hypot  (double x, double y);

Arguments

x
A real value.
y
A real value.

Description

On overflow, the return value is undefined.


Previous Page | Next Page | Table of Contents | Index