Data Types C++ Tutorial

#include 
#include 
#include 
#include 
using namespace std;
int main( ) {
  stringstream ss;
  ss << showbase << hex << 16; // Show the base in hexadecimal
  cout << ss.str( ) << endl;
}
0x10