Introducing Radical.sh

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

atan2() - Return the Tangent of a/b in C++

//ATAN2() FUNCTION

#include<iostream.h>
#include<math.h>
#include<conio.h>
void main()
{
double val= -0.9;
cout<<"atan2 of val is:"<< atan2(val,1.0);
getch();
}