macro | isgreaterequal(x,y) |
---|
function | bool isgreaterequal (float x , float y); bool isgreaterequal (double x , double y); bool isgreaterequal (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 or equal to y.false
(0
) otherwise.
|
|
log(10.0) is not negative |