[C/C++] double to hex string & hex string to double - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:30:06Z http://stackoverflow.com/feeds/question/497472 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/497472/c-c-double-to-hex-string-hex-string-to-double 1 [C/C++] double to hex string & hex string to double dakkan 2009-01-30T22:14:13Z 2009-05-10T04:29:41Z <p>Hi,</p> <p>What I'm trying to do is to convert a double to hex string and then back to double.</p> <p>The following code does conversion double-to-hex string.</p> <pre><code>char * double2HexString(double a) { char *buf = new char[17]; // double is 8-byte long, so we have 2*8 + terminating \0 char *d2c; d2c = (char *) &amp;a; char *n = buf; int i; for(i = 0; i &lt; 8; i++) { sprintf(n, "%02X", *d2c++); n += 2; } *(n) = '\0'; } </code></pre> <p>This seems work, however, I'm not sure how to convert the resulting string back to double. Please advise :)</p> http://stackoverflow.com/questions/497472/c-c-double-to-hex-string-hex-string-to-double/497511#497511 0 Answer by Daniel for [C/C++] double to hex string & hex string to double Daniel 2009-01-30T22:26:05Z 2009-01-30T22:31:53Z <p>Using sprintf is slow, to be honest, but you can revert it with sscanf, doing almost exactly the same thing.</p> <p>Well, actually, you'd have to copy each two characters to a buffer string, to decode each individually. My first try, below is incorrect:</p> <pre><code>double hexString2Double(char *buf) { char *buf2 = new char[3]; double a; char* c2d; c2d = (char *) &amp;a; int i; buf2[2] = '\0' for(i = 0; i &lt; 16; i++) { buf2[0] = *buf++; buf2[1] = *buf++; sscanf(buf2, "%X", c2d++); } return a; } </code></pre> <p>You see, %X is decoded as an int, not as a byte. It might even work, depending on low-ending/high-endian issues, but it's basically broken. So, let's try to get around that:</p> <pre><code>double hexString2Double(char *buf) { char *buf2 = new char[3]; double a; char* c2d; c2d = (char *) &amp;a; int i; int decoder; buf2[2] = '\0' for(i = 0; i &lt; 16; i++) { buf2[0] = *buf++; buf2[1] = *buf++; sscanf(buf2, "%X", &amp;decoder); c2d++ = (char) decoder; } return a; } </code></pre> <p>Barring syntax errors and such, I think this should work.</p> http://stackoverflow.com/questions/497472/c-c-double-to-hex-string-hex-string-to-double/497528#497528 1 Answer by strager for [C/C++] double to hex string & hex string to double strager 2009-01-30T22:29:28Z 2009-01-30T22:36:08Z <pre><code>char *doubleToRawString(double x) { const size_t bytesInDouble = 8; union { double value; unsigned char bytes[bytesInDouble]; } u; u.value = x; char *buffer = new char[bytesInDouble * 2 + 1]; unsigned char *input = u.bytes; char *output = buffer; for(int i = 0; i &lt; bytesInDouble; ++i) { sprintf(output, "%02hhX", *input); ++input; output += 2; } return buffer; } double rawStringToDouble(const char *input) { const size_t bytesInDouble = 8; union { double value; unsigned char bytes[bytesInDouble]; } u; unsigned char *output = u.bytes; for(int i = 0; i &lt; bytesInDouble; ++i) { sscanf(input, "%02hhX", output); input += 2; ++output; } return u.value; } </code></pre> <p>This uses the non-standard <code>hh</code> modifier. If you don't want to use that, use:</p> <pre><code>unsigned int tmp = *input; sprintf(output, "%02X", tmp); unsigned int tmp; sscanf(input, "%02X", &amp;tmp); *output = tmp; </code></pre> http://stackoverflow.com/questions/497472/c-c-double-to-hex-string-hex-string-to-double/497536#497536 0 Answer by jpalecek for [C/C++] double to hex string & hex string to double jpalecek 2009-01-30T22:32:41Z 2009-01-30T22:32:41Z <p>Almost the same procedure should do</p> <pre><code>void hex2double(const char* buf, double&amp; a) { char tmpbuf[3]={0}; char *d2c; unsigned int tmp; d2c = (char *) &amp;a; char *n = buf; int i; for(i = 0; i &lt; 8; i++) { tmpbuf[0]=*buf++; tmpbuf[1]=*buf++; sscanf(tmpbuf, "%X", &amp;tmp); *d2c++=tmp; } } </code></pre> <p>Quick &amp; dirty.</p> <p>Note, however, that this is playing with fire. First, your hex strings are only usable on machines with the same double format, and the same endianness. Second, the conversion functions are short on strict aliasing rule.</p> http://stackoverflow.com/questions/497472/c-c-double-to-hex-string-hex-string-to-double/497539#497539 1 Answer by strager for [C/C++] double to hex string & hex string to double strager 2009-01-30T22:33:28Z 2009-01-30T22:33:28Z <pre><code>char *doubleToRawString(double x) { // Assumes sizeof(long long) == 8. char *buffer = new char[32]; sprintf(buffer, "%llx", *(unsigned long long *)&amp;x); // Evil! return buffer; } double rawStringToDouble(const char *s) { // Assumes sizeof(long long) == 8. double ret; sscanf(s, "%llx", (unsigned long long *)&amp;ret); // Evil! return ret; } </code></pre> http://stackoverflow.com/questions/497472/c-c-double-to-hex-string-hex-string-to-double/497588#497588 0 Answer by Sparr for [C/C++] double to hex string & hex string to double Sparr 2009-01-30T22:46:35Z 2009-01-30T22:46:35Z <pre><code>#include &lt;stdio.h&gt; main() { union double_ull_t { double d; unsigned long long u; } x; scanf("%lf",&amp;x.d); printf("%016llX %lf\n",x.u,x.d); scanf("%016llX",&amp;x.u); printf("%016llX %lf\n",x.u,x.d); } </code></pre> <p>Maybe not the most efficient solution, but the easiest to code.</p> http://stackoverflow.com/questions/497472/c-c-double-to-hex-string-hex-string-to-double/844685#844685 0 Answer by dwelch for [C/C++] double to hex string & hex string to double dwelch 2009-05-10T04:29:41Z 2009-05-10T04:29:41Z <p>You want to use a union and avoid this bad habit:</p> <p>char *d2c;</p> <p>d2c = (char *) &a;</p> <p>For just printing its not bad, its when you try to modify d2c and then use a is when you get into trouble. (same is true for any two variables or pointers (or arrays) sharing the same (theoretical) memory.</p> <pre><code>union { double f; unsigned long ul; } myun; myun.f = a; printf("0x%lX",myun.ul); to go the other way (scanf is also a very dangerous function that should be avoided). myun.ul=strtoul(string,NULL,16); a=myun.f; </code></pre>