static const int
max_exponent10
= 0;
The member stores the maximum positive integer such that the type can represent as a finite value 10 raised to that
power (which is the value FLT_MAX_10_EXP
for type float). Meaningful only for floating-point types.
See the related numeric_limits sample program.