noshowbase function — Manipulator to disable showing output radix
ios_base& noshowbase(ios_base& stream)
The noshowbase
function is
a manipulator that clears the showbase
flag, which tells an output
stream to write a prefix for integer output: 0x
for hexadecimal or 0
for octal. Specifically, the function
calls stream.unsetf(ios_base::showbase)
and
returns stream
.
hex function, ios_base::fmtflags type, oct function, nouppercase function, showbase function, uppercase function, num_put
in <locale>