Provided by: manpages-es_1.55-10_all bug

NOMBRE

       sqrt - función de la raíz cuadrada

SINOPSIS

       #include <math.h>

       double sqrt(double x);

DESCRIPCIÓN

       La  función sqrt() devuelve la raíz cuadrada no negativa de x.  Falla y pone EDOM en errno
       si x es negativo.

ERRORES

       EDOM   x es negativo.

CONFORME A

       SVID 3, POSIX, BSD 4.3, ISO 9899

VÉASE TAMBIÉN

       hypot(3)