Introducing Radical.sh

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

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

//ATAN() FUNCTION
#include<iostream.h>
#include<math.h>
#include<conio.h>
int main(void)
{
double val =-0.5;
cout<<"ARc tangent of "<<val<<" is "<<atan(val);
getch();
return 0;
}