|
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <math.h> | ||
#define isfinite(arg) /* implementation defined */ | (since C99) | |
Determines if the given floating-point numberarg has finite value i.e. it is normal, subnormal or zero, but not infinite or NaN. The macro returns an integral value.
FLT_EVAL_METHOD is ignored: even if the argument is evaluated with more range and precision than its type, it is first converted to its semantic type, and the classification is based on that.
Contents |
| arg | - | floating-point value |
Nonzero integral value ifarg has finite value,0 otherwise.
#include <float.h>#include <math.h>#include <stdio.h> int main(void){printf("isfinite(NAN) = %d\n", isfinite(NAN));printf("isfinite(INFINITY) = %d\n", isfinite(INFINITY));printf("isfinite(0.0) = %d\n", isfinite(0.0));printf("isfinite(DBL_MIN/2.0) = %d\n", isfinite(DBL_MIN/2.0));printf("isfinite(1.0) = %d\n", isfinite(1.0));printf("isfinite(exp(800)) = %d\n", isfinite(exp(800)));}
Possible output:
isfinite(NAN) = 0isfinite(INFINITY) = 0isfinite(0.0) = 1isfinite(DBL_MIN/2.0) = 1isfinite(1.0) = 1isfinite(exp(800)) = 0
(C99) | classifies the given floating-point value (function macro)[edit] |
(C99) | checks if the given number is infinite (function macro)[edit] |
(C99) | checks if the given number is NaN (function macro)[edit] |
(C99) | checks if the given number is normal (function macro)[edit] |
C++ documentation forisfinite | |