unsigned int i = 0x02081;
cout << std::hex << i;
This displays 2081 when compiled with VS2010 but I think it should display 0x02081. Am I right, and if so, how can this be fixed?
This displays 2081 when compiled with VS2010 but I think it should display 0x02081. Am I right, and if so, how can this be fixed? |
||||
|
|
|
By default the base is not printed:
|
|||
|
|
The easiest solution, of course, is:
Leading zeroes can vary in amount because they don't matter. You can choose any amount you like. |
|||||||||||||||
|
No, you're not. It will display the value in hex, which is If you want the exact output you said you expected, you can do this:
|
|||||||
|
|
|
It should display the value of
As Let_Me_Be points out: |
||||
|
|