How to convert struct to char array in C - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:47:39Z http://stackoverflow.com/feeds/question/433682 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c 2 How to convert struct to char array in C falcojr 2009-01-11T20:58:57Z 2009-01-13T02:06:17Z <p>I'm trying to convert a struct to a char array to send over the network. However, I get some weird output from the char array when I do.</p> <pre><code>#include &lt;stdio.h&gt; struct x { int x; } __attribute__((packed)); int main() { struct x a; a.x=127; char *b = (char *)&amp;a; int i; for (i=0; i&lt;4; i++) printf("%02x ", b[i]); printf("\n"); for (i=0; i&lt;4; i++) printf("%d ", b[i]); printf("\n"); return 0; } </code></pre> <p>Here is the output for various values of a.x (on an X86 using gcc):<br> 127:<br> 7f 00 00 00 <br> 127 0 0 0 <br></p> <p>128:<br> ffffff80 00 00 00<br> -128 0 0 0 <br></p> <p>255:<br> ffffffff 00 00 00 <br> -1 0 0 0 <br></p> <p>256:<br> 00 01 00 00 <br> 0 1 0 0 <br></p> <p>I understand the values for 127 and 256, but why do the numbers change when going to 128? Why wouldn't it just be: 80 00 00 00 128 0 0 0</p> <p>Am I forgetting to do something in the conversion process or am I forgetting something about integer representation?</p> <p>*Note: This is just a small test program. In a real program I have more in the struct, better variable names, and I convert to little-endian. <br> *Edit: formatting</p> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/433691#433691 8 Answer by Rowland Shaw for How to convert struct to char array in C Rowland Shaw 2009-01-11T21:02:43Z 2009-01-11T21:02:43Z <p>char is a signed type; so with two's complement, 0x80 is -128 for an 8-bit integer (i.e. a byte)</p> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/433694#433694 1 Answer by Kevin Loney for How to convert struct to char array in C Kevin Loney 2009-01-11T21:04:11Z 2009-01-11T21:04:11Z <p>char is a signed type so what you are seeing is the two-compliment representation, casting to (unsigned char*) will fix that (Rowland just beat me).</p> <p>On a side note you may want to change</p> <pre><code>for (i=0; i&lt;4; i++) { //... } </code></pre> <p>to</p> <pre><code>for (i=0; i&lt;sizeof(x); i++) { //... } </code></pre> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/433697#433697 0 Answer by ocdecio for How to convert struct to char array in C ocdecio 2009-01-11T21:04:32Z 2009-01-11T21:04:32Z <p>You may want to convert to a unsigned char array.</p> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/433702#433702 4 Answer by Iraimbilanja for How to convert struct to char array in C Iraimbilanja 2009-01-11T21:07:25Z 2009-01-11T21:07:25Z <p>Treating your struct as if it were a char array is undefined behavior. To send it over the network, use proper serialization instead. It's a pain in C++ and even more so in C, but it's the only way your app will work independently of the machines reading and writing.</p> <p><a href="http://en.wikipedia.org/wiki/Serialization#C" rel="nofollow">http://en.wikipedia.org/wiki/Serialization#C</a></p> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/433715#433715 3 Answer by Rob Kennedy for How to convert struct to char array in C Rob Kennedy 2009-01-11T21:12:47Z 2009-01-12T01:00:06Z <p>The <code>x</code> format specifier by itself says that the argument is an <code>int</code>, and since the number is negative, <code>printf</code> requires eight characters to show all four non-zero bytes of the <code>int</code>-sized value. The <code>0</code> modifier tells to pad the output with zeros, and the <code>2</code> modifier says that the <em>minimum</em> output should be two characters long. As far as I can tell, <code>printf</code> doesn't provide a way to specify a <em>maximum</em> width, except for strings.</p> <p>Now then, you're only passing a <code>char</code>, so bare <code>x</code> tells the function to use the full <code>int</code> that got passed instead — due to default argument promotion for "<code>...</code>" parameters. Try the <code>hh</code> modifier to tell the function to treat the argument as just a <code>char</code> instead:</p> <pre><code>printf("%02hhx", b[i]); </code></pre> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/433725#433725 8 Answer by Johannes Schaub - litb for How to convert struct to char array in C Johannes Schaub - litb 2009-01-11T21:17:41Z 2009-01-11T21:17:41Z <p>What you see is the sign preserving conversion from char to int. The behavior results from the fact that on your system, char is signed (<em>Note:</em> char is not signed on all systems). That will lead to negative values if a bit-pattern yields to a negative value for a char. Promoting such a char to an int will preserve the sign and the int will be negative too. Note that even if you don't put a <code>(int)</code> explicitly, the compiler will automatically promote the character to an int when passing to printf. The solution is to convert your value to <code>unsigned char</code> first:</p> <pre><code>for (i=0; i&lt;4; i++) printf("%02x ", (unsigned char)b[i]); </code></pre> <p>Alternatively, you can use <code>unsigned char*</code> from the start on:</p> <pre><code>unsigned char *b = (unsigned char *)&amp;a; </code></pre> <p>And then you don't need any cast at the time you print it with printf. </p> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/433776#433776 1 Answer by Brian Clapper for How to convert struct to char array in C Brian Clapper 2009-01-11T21:41:02Z 2009-01-11T21:41:02Z <p>Converting your structure to characters or bytes the way you're doing it, is going to lead to issues when you do try to make it network neutral. Why not address that problem now? There are a variety of different techniques you can use, all of which are likely to be more "portable" than what you're trying to do. For instance:</p> <ul> <li>Sending numeric data across the network in a machine-neutral fashion has long been dealt with, in the POSIX/Unix world, via the functions <code>htonl</code>, <code>htons</code>, <code>ntohl</code> and <code>ntohs</code>. See, for example, the <a href="http://www.freebsd.org/cgi/man.cgi?query=htonl&amp;apropos=0&amp;sektion=0&amp;manpath=FreeBSD+7.1-RELEASE&amp;format=html" rel="nofollow">byteorder(3)</a> manual page on a FreeBSD or Linux system.</li> <li>Converting data to and from a completely neutral representation like <a href="http://json.org/" rel="nofollow">JSON</a> is also perfectly acceptable. The amount of time your programs spend converting the data between JSON and native forms is likely to pale in comparison to the network transmission latencies.</li> </ul> http://stackoverflow.com/questions/433682/how-to-convert-struct-to-char-array-in-c/437747#437747 0 Answer by Norman Ramsey for How to convert struct to char array in C Norman Ramsey 2009-01-13T02:06:17Z 2009-01-13T02:06:17Z <p>Unless you have <em>very</em> convincing measurements showing that every octet is precious, <strong>don't do this</strong>. Use a readable ASCII protocol like <a href="http://www.ietf.org/rfc/rfc0821.txt" rel="nofollow">SMTP</a>, <a href="http://www.ietf.org/rfc/rfc977.txt" rel="nofollow">NNTP</a>, or one of the many other fine Internet protocols codified by the IETF.</p> <p>If you really must have a binary format, it's still not safe just to shove out the bytes in a struct, because the byte order, basic sizes, or alignment constraints may differ from host to host. You must design your wire protcol to use well-defined sizes and to use a well defined byte order. For your implementation, either use macros like <code>ntohl(3)</code> or use shifting and masking to put bytes into your stream. Whatever you do, make sure your code produces the same results on both big-endian and little-endian hosts.</p>