isgreater
From cppreference.com
| Defined in header <math.h>
|
||
| #define isgreater(x, y) /* implementation defined */ |
(since C99) | |
Determines if the floating point number x is greater than the floating-point number (y), without setting floating-point exceptions.
Parameters
| x | - | floating point value |
| y | - | floating point value |
Return value
Nonzero integral value if x > y, 0 otherwise.
Notes
The built-in operator> for floating-point numbers may set FE_INVALID if one or both of the arguments is NaN. This function is a "quiet" version of operator>.