fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int
  6. main ()
  7. {
  8.  
  9. cout << 31 << ", ";
  10.  
  11. cout.setf (ios::oct, ios::basefield);
  12.  
  13. cout.setf (ios::showbase); //LINE I
  14.  
  15. cout << 31 << ", ";
  16.  
  17. cout.unsetf (ios::showbase); // LINE II
  18.  
  19. cout << 63 << ", ";
  20.  
  21. return 0;
  22.  
  23. }
  24.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
31, 037, 77,