Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

asin() - Return the Sine of value as a Argument in C++

//ASIN() FUNCTION
#include<iostream.h>
#include<math.h>
#include<conio.h>
int main(void)
{
int val =-1;

cout<<"Arc sine of "<<val<< " is "<< asin(val);
getch();
return 0;
}