Mega Code Archive

 
Categories / C / Code Snippets
 

Calculate arctangent how to use atan

#include <stdio.h> #include <math.h> #define PI 3.14159265 int main () { double j, result; j = 5; result = atan ( j ) * 180 / PI; printf ("Arctangent of %lf is %lf degrees\n", j, result ); return 0; }