macro | islessgreater(x,y) |
---|
function | bool islessgreater (float x , float y); bool islessgreater (double x , double y); bool islessgreater (long double x, long double y); |
---|
false
, but no FE_INVALID exception is raised (note that the expression x<y||x>y
may raise such an exception in this case).int
value. The type of both x and y shall be float
, double
or long double
.bool
value.(x)<(y)||(x)>(y)
:true
(1
) if x is less than or greater than y.false
(0
) otherwise.
|
|
log(10.0) is not zero |