macro
<cfenv>

FE_TOWARDZERO

int
Toward-zero rounding direction mode
This macro expands to a value of type int that identifies the toward-zero rounding direction mode for functions fegetround and fesetround.

Rounding x toward zero selects the nearest possible value that is not larger in magnitude 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