How to use atan2
#include <math.h> #include <stdio.h> int main(void) { double val = -1.0; do { printf("Atan2 of %f is %f.\n", val, atan2(val,1.0)); val += 0.1; } while(val<=1.0); return 0; }