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.
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