Go to the first, previous, next, last section, table of contents.
#include <math.h> double asin(double x);
This function returns the angle in the range [-Pi/2..Pi/2]
whose
sine is x.
The inverse sine, in radians, of x. If the absolute value of
x is greater than 1, the return value is NaN
and
errno
is set to EDOM
.
ANSI, POSIX
Go to the first, previous, next, last section, table of contents.