Set cout: hex and basefield, ios::hex, ios::basefield : cout hex « Console « C++






Set cout: hex and basefield, ios::hex, ios::basefield

Set cout: hex and basefield, ios::hex, ios::basefield

#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
  cout.setf(ios::hex, ios::basefield);
  cout << 100 << endl;                  // cout 100 in hex

  cout.fill('?');
  cout.width(10);
  cout << 2343.0;

  return 0;
}


           
       








Related examples in the same category

1.cout: output hexcout: output hex