Asin() - C library function Program

Declaration :

double asin(double x)

Explanation :

PurposeThe C library function double asin(double x) returns the arc sine of x in radians.
Parameters x ===> This is the floating point value in the interval [-1+1].
Return ValueThis function returns the arc sine of x in the interval [-pi/2+pi/2] radians.
Exception

C Program : Example

The following example shows the usage of asin() function.

#include 
#include 
#define PI 3.14159265
int main ()
{
   double x, ret, val;
   x = 0.9;
   val = 180.0 / PI;
   ret = asin(x) * val;
   printf("The arc sine of %lf is %lf degrees", x, ret);
   return(0);
}