NOMBRE
hypot − Función de distancia euclídea
SINOPSIS
#include <math.h>
double hypot(double x, double y);
DESCRIPCIÓN
La función hypot() devuelve el resultado de sqrt(x*x + y*y). Este valor es la longitud de la hipotenusa de un triángulo rectángulo cuyos lados miden x e y, o la distancia del punto (x, y) al origen.
CONFORME A
SVID 3, BSD 4.3