macro
<cfenv>

FE_UPWARD

int
Upward rounding direction mode
This macro expands to a value of type int that identifies the upward rounding direction mode for functions fegetround and fesetround.

Rounding x upward selects the smallest possible value that is not less than x.

Possible rounding direction modes are:
macro valuedescription
FE_DOWNWARDRound downward.
FE_TONEARESTRound to nearest.
FE_TOWARDZERORound toward zero.
FE_UPWARDRound upward.

See also