Resolved! atanf function not working?
Can anyone tell me why the value of 'c' here should be NaN ??On other platforms I get the same result for 'a' and 'c', as expected.#include <math.h> float a = atanf( -1.0f ); // returns -0.785398185 float b = -1.0f; float c = atanf( b ); // retur...