Asin / Asinl Function >> Math.h >> Header File in C
Asin / Asinl :
- The asin() function returns the arc sine of an argument
- Argument should be between -1 and 1.
- Acos return the arc sine of the input value [ in the range -PI/2 to PI/2 ]
- On error ( if the arguments are not in the range -1 to 1) It returns NAN Or Displays “Invalid domain error“
Syntax :
double asin( double arg );
long double asinl(long double (x));Live Example :
#include<stdio.h>
#include<math.h>
int main(void)
{
double result;
double x = 0.5;
result = asin(x);
printf("Arc sine of %lf : %lfn",x,result);
return 0;
}Output :
Arc sine of 0.500000 : 0.523599