C/C++ read a byte from an hexinput from stdin - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:32:57Zhttp://stackoverflow.com/feeds/question/512941http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/512941/c-c-read-a-byte-from-an-hexinput-from-stdin1C/C++ read a byte from an hexinput from stdinZka2009-02-04T19:35:53Z2009-02-06T20:59:30Z
<p>Hi..</p>
<p>Can't exactly find a way on how to do the following in C/C++.</p>
<p>Input : hexdecimal values, for example: ffffffffff...</p>
<p>I've tried the following code in order to read the input :</p>
<pre><code>uint16_t twoBytes;
scanf("%x",&twoBytes);
</code></pre>
<p>Thats works fine and all, but how do I split the 2bytes in 1bytes <code>uint8_t</code> values (or maybe even read the first byte only). Would like to read the first byte from the input, and store it in a byte matrix in a position of choosing.</p>
<pre><code>uint8_t matrix[50][50]
</code></pre>
<p>Since I'm not very skilled in formating / reading from input in C/C++ (and have only used scanf so far) any other ideas on how to do this easily (and fast if it goes) is greatly appreciated .</p>
<p>Edit: Found even a better method by using the fread function as it lets one specify how many bytes it should read from the stream (stdin in this case) and save to a variable/array.</p>
<pre><code>size_t fread ( void * ptr, size_t size, size_t count, FILE * stream );
</code></pre>
<p>Parameters</p>
<p>ptr - Pointer to a block of memory with a minimum size of (size*count) bytes.</p>
<p>size - Size in bytes of each element to be read.</p>
<p>count - Number of elements, each one with a size of size bytes.</p>
<p>stream - Pointer to a FILE object that specifies an input stream. </p>
<p><a href="http://www.cplusplus.com/reference/clibrary/cstdio/fread.html" rel="nofollow"> cplusplus ref</a></p>
http://stackoverflow.com/questions/512941/c-c-read-a-byte-from-an-hexinput-from-stdin/512965#5129652Answer by strager for C/C++ read a byte from an hexinput from stdinstrager2009-02-04T19:42:32Z2009-02-04T20:00:07Z<p><code>%x</code> reads an <code>unsigned int</code>, not a <code>uint16_t</code> (thought they may be the same on your particular platform).</p>
<p>To read only one byte, try this:</p>
<pre><code>uint32_t byteTmp;
scanf("%2x", &byteTmp);
uint8_t byte = byteTmp;
</code></pre>
<p>This reads an <code>unsigned int</code>, but stops after reading two characters (two hex characters equals eight bits, or one byte).</p>
http://stackoverflow.com/questions/512941/c-c-read-a-byte-from-an-hexinput-from-stdin/512966#5129660Answer by Adrian Grigore for C/C++ read a byte from an hexinput from stdinAdrian Grigore2009-02-04T19:43:08Z2009-02-04T19:43:08Z<p>You should be able to split the variable like this:</p>
<pre><code>uint8_t LowerByte=twoBytes & 256;
uint8_t HigherByte=twoBytes >> 8;
</code></pre>
http://stackoverflow.com/questions/512941/c-c-read-a-byte-from-an-hexinput-from-stdin/512978#5129780Answer by Brian Postow for C/C++ read a byte from an hexinput from stdinBrian Postow2009-02-04T19:47:28Z2009-02-04T19:47:28Z<p>A couple of thoughts:</p>
<p>1) read it as characters and convert it manually - painful</p>
<p>2) If you know that there are a multiple of 4 hexits, you can just read in twobytes and then convert to one-byte values with high = twobytes << 8; low = twobyets & FF;</p>
<p>3) %2x</p>
http://stackoverflow.com/questions/512941/c-c-read-a-byte-from-an-hexinput-from-stdin/513102#5131021Answer by Zka for C/C++ read a byte from an hexinput from stdinZka2009-02-04T20:17:22Z2009-02-04T20:17:22Z<p>Thanks for the replies and comments.</p>
<p>The easiest solution seems to be by using scanf and hhx format.</p>
<p>Reading it as twobytes and then masking and shifting seems like an alternative but thats extra works there (even if it's probably not noticable).</p>
<p>Thanks once again !</p>