I have a binary number which I want to represent in decimal. The number is as follows:
Binary = 1000 11100000 00000000 00000000 00000000 00000000 01101110 10110000 10100101
Its equivalent hexadecimal representation is as follows :
Hexadecimal = 08 E0 00 00 00 00 6E B0 A5
I am working on Windows 7 and tried using calculator in programmer mode with Bin (Binary) and Qword. However, it has a limit of 64 bit.
Questions:
- How do I represent this number in decimal?
- Is there any free tool available to represent this number?
- Is there any way in C++11/C++ to achieve this?