std::dec,std::hex,std::oct (3) Linux Manual Page
std::dec,std::hex,std::oct – std::dec,std::hex,std::oct Synopsis Defined in header <ios> std::ios_base& dec( std::ios_base& str ); (1) std::ios_base& hex( std::ios_base& str ); (2) std::ios_base& oct( std::ios_base& str ); (3) Modifies the default numeric base for integer I/O. 1) sets the basefield of the stream str to dec as if by calling str.setf(std::ios_base::dec, std::ios_base::basefield) 2) sets the basefield of…
