nouppercase function — Manipulator to use lowercase in generated output
ios_base& nouppercase(ios_base& stream)
The nouppercase
function is
a manipulator that clears the uppercase
flag, which tells an output
stream to use uppercase letters for generated output (e.g., 0X
for hexadecimal prefix or E
for exponents). Specifically, the
function calls stream.unsetf(ios_base::uppercase)
and
returns stream
.
hex function, ios_base::fmtflags type, scientific function, uppercase function, num_put
in <locale>