Introducing Radical.sh

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

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

//asinh() function

#include<iostream.h>
#include<conio.h>
#include<complex.h>
void main()
{
double v= -12.0;
clrscr();
cout<<" asinh("<<v <<") is: "<<log(v+sqrt(pow(v,2)+1));
getch();
}