atan
Computes the principal value of the arc tangent of the specified argument
#include <math.h>
double atan (
double x);
The atan function returns the arc tangent in the range (-pi/2, pi/2).
#include <math.h>
#include <stdio.h>
main ()
{
printf ("%f\n", atan(.5) );
}
produces the following:
0.463648