isnan - test for a NaN
#include <math.h> int isnan(double x);
The isnan() function tests whether x is NaN.On systems not supporting NaN values, isnan() always returns 0.
The isnan() function returns non-zero if x is NaN. Otherwise, 0 is returned.
No errors are defined.
None.
None.
None.
<math.h>.