// display a right justified hex value in a field of width 5 Output.unsetf(ios::dec); Output.setf(ios::hex); Output << right << setw(5) << i; Output.setf(ios::dec);