Introducing Radical.sh

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

atanh() - Return the hyperbolic Tangent of value as a Argument in C++

//atanh() function

#include<iostream.h>
#include<math.h>
#include<conio.h>
void main()
{
double x=0.9;
cout<< (log(1+x) - log(1-x))/2;
getch();

}