fork(3) download
  1. #include <iostream>
  2. int main()
  3. {
  4. std::cout<<std::ios::showbase<<123<<", "<<std::hex<<123<<", "<<std::oct<<123<<'\n';
  5. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
512123, 7b, 173