Choose Category
#include <math.h> #include <stdio.h> int main(void) { printf("Atan2 of %f is %f.\n", -0.9, atan2(-0.9,1.0)); return 0; }