The C library function double atan(double x) returns the arc tangent of x in radians.
double atan(double x)
#include #include #define PI 3.14159265 int main () { double x, ret, val; x = 1.0; val = 180.0 / PI; ret = atan (x) * val; printf("The arc tangent of %lf is %lf degrees", x, ret); return(0); }
The arc tangent of 1.000000 is 45.000000 degrees