macro
<cfenv>

FE_DOWNWARD

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

Rounding x downward selects the largest possible value that is not greater 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