C / math.h / asin
acos, » asin, atan, atan2, ceil, cos, cosh, exp, fabs, floor, fmod, frexp, ldexp, log, log10, modf, pow, sin, sinh, sqrt, tan, tanh,
Funcion: asin()
Sintaxis:
double asin(double x);

Descripcion: Calcula el valor principal del arco seno de x. Puede producirse un error de dominio para los argumentos que no estén en el intervalo [-1, +1].


Ejemplo:
#include <stdio.h>
#include <math.h>
 
int main()
{
   double x = 0.2345;
 
   printf( "asin( %f ) = %f\n", x, asin(x) );
   return 0;
}

Librerias C

Librerias ANSI C
   string.hcstring
   math.hcmath
   stdio.hcstdio
   time.hctime
   stdlib.hcstdlib
   ctype.hcctype
   locale.hclocale
   signal.hcsignal
   setjmp.hcsetjmp

Librerias Borland
   conio.h
   graphics.h