Back to notes -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    The fragment in a complete program.Lecture 2 - slide 35 : 42
Program 1
#include <iostream>
#include <iomanip>
#include <string>

using namespace std;

int main(){

  cout << 17 << endl << showbase 
       <<  hex << 17 << endl
       << oct << 17 << endl;   
}