Jul 30, 2012 at 3:15am
1) Why does asin(28.867514) not return a number?
2) How can I check for -1.#IND000 in c++?
Jul 30, 2012 at 3:33am
isnan() in cmath.h
or u can define it also
#define isnan(x) ((x) != (x))
Jul 30, 2012 at 4:41am
I think it's is because you need to input the value in radians, try asin(28.867514*PI/180)
;