Asin Function
Syntax :
float asinf(float arg);
double asin(double arg);
long double asinl(long double arg);
Example
#include <math.h>
#include <stdio.h>
int main() {
double x = -1.0;
do {
printf("Arc sine of %f is %f.\n", x, asin(x));
x += 0.1;
}
while(x<=1.0);
return 0;
}
Output