macro | isgreater(x,y) |
---|
function | bool isgreater (float x , float y); bool isgreater (double x , double y); bool isgreater (long double x, long double y); |
---|
false
, but no FE_INVALID exception is raised (note that the expression 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)
:true
(1
) if x is greater than y.false
(0
) otherwise.
|
|
log(10.0) is positive |