Calculate arctangent: how to use atan
#include <stdio.h>
#include <math.h>
#define PI 3.14159265
int main ()
{
double v, result;
v = 5;
result = atan ( v ) * 180 / PI;
printf ("Arctangent of %lf is %lf degrees\n", v, result );
return 0;
}
Related examples in the same category