std::showbase,std::noshowbase (3) Linux Manual Page
std::showbase,std::noshowbase – std::showbase,std::noshowbase Synopsis Defined in header <ios> std::ios_base& showbase( std::ios_base& str ); (1) std::ios_base& noshowbase( std::ios_base& str ); (2) 1) enables the showbase flag in the stream str as if by calling str.setf(std::ios_base::showbase) 2) disables the showbase flag in the stream str as if by calling str.unsetf(std::ios_base::showbase) This is an I/O manipulator, it may…
