hypot, hypotf, hypotl, _hypot, _hypotf, _hypotl
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at hypot, hypotf, hypotl, _hypot, _hypotf, _hypotl.
Calculates the hypotenuse.
Syntax
double hypot(
double x,
double y
);
float hypotf(
float x,
float y
);
long double hypotl(
long double x,
long double y
);
double _hypot(
double x,
double y
);
float _hypotf(
float x,
float y
);
long double _hypotl(
long double x,
long double y
);
Parameters
x
, y
Floating-point values.
Return Value
If successful, hypot
returns the length of the hypotenuse; on overflow, hypot
returns INF (infinity) and the errno
variable is set to ERANGE
. You can use _matherr
to modify error handling.
For more information about return codes, see errno, _doserrno, _sys_errlist, and _sys_nerr.
Remarks
The hypot
functions calculate the length of the hypotenuse of a right triangle, given the length of the two sides x
and y
(in other words, the square root of x
2 + y
2).
The versions of the functions that have leading underscores are provided for compatibility with earlier standards. Their behavior is identical to the versions that don't have leading underscores. We recommend using the versions without leading underscores for new code.
Requirements
Routine | Required header |
---|---|
hypot , hypotf , hypotl , _hypot , _hypotf , _hypotl |
<math.h> |
For more compatibility information, see Compatibility.
Example
// crt_hypot.c
// This program prints the hypotenuse of a right triangle.
#include <math.h>
#include <stdio.h>
int main( void )
{
double x = 3.0, y = 4.0;
printf( "If a right triangle has sides %2.1f and %2.1f, "
"its hypotenuse is %2.1f\n", x, y, _hypot( x, y ) );
}
If a right triangle has sides 3.0 and 4.0, its hypotenuse is 5.0
.NET Framework Equivalent
Not applicable. To call the standard C function, use PInvoke
. For more information, see Platform Invoke Examples.