redhat man page for sqrt

Query: sqrt

OS: redhat

Section: 3

Links: redhat man pages   all man pages

Forums: unix linux community   forum categories

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

SQRT(3) 						     Linux Programmer's Manual							   SQRT(3)

NAME
sqrt - square root function
SYNOPSIS
#include <math.h> double sqrt(double x);
DESCRIPTION
The sqrt() function returns the non-negative square root of x. It fails and sets errno to EDOM, if x is negative.
ERRORS
EDOM x is negative.
CONFORMING TO
SVID 3, POSIX, BSD 4.3, ISO 9899
SEE ALSO
hypot(3) 1993-06-21 SQRT(3)
Related Man Pages
sqrt(3) - linux
sqrtl(3) - linux
sqrt(3) - freebsd
cbrtf(3) - freebsd
cbrtl(3) - freebsd
Similar Topics in the Unix Linux Community
sqrt
sqrt is not find???
How to create SQRT function in catenate file
how can i find sqrt of a any number without using expr
Q: Is SQRT(n) possible in a POSIX compliant shell? A: Yes within limits.