Click here to Skip to main content
15,886,835 members
Articles / Desktop Programming / MFC
Article

How to convert HUGE numbers to Hex string and back

Rate me:
Please Sign up or sign in to vote.
2.28/5 (15 votes)
4 Feb 2003 55.2K   812   15   3
How to convert big numbers to ready-to-display hex numbers.

Introduction

During my work with systems that use a huge memory address range, I had to display memory addresses in hex format that were very hard to convert into string. The usual %x flag will only work with up to 16 bit hex values and any code example you will see on the Internet is limited to even less than that.

So, I sat down and wrote 2 generic functions you can use:

  • hex_string_to_long - This one will take a hex string such as "10FBBC45" and convert it to a very long integer.
  • convert_long_to_hex - Will ask you for the number you want to convert and for a string reference that it will return the answer into.

Don't forget to include the math.h library in your code and you should be all set. Just copy and paste the functions to your code.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) EMC
United States United States
12 Years experience in: C , C++ , MFC.
Embedded programming.

Comments and Discussions

 
GeneralSorry to tell you, but... Pin
Andreas Saurwein5-Feb-03 6:19
Andreas Saurwein5-Feb-03 6:19 
GeneralRe: Sorry to tell you, but... Pin
Jörgen Sigvardsson5-Feb-03 9:48
Jörgen Sigvardsson5-Feb-03 9:48 
GeneralRe: Sorry to tell you, but... Pin
Andreas Saurwein6-Feb-03 5:14
Andreas Saurwein6-Feb-03 5:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.