Comparing Char which holds hex values C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:49:23Z http://stackoverflow.com/feeds/question/257286 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/257286/comparing-char-which-holds-hex-values-c 0 Comparing Char which holds hex values C++ BobS 2008-11-02T20:08:57Z 2008-11-02T20:44:53Z <p>Hi, in C++ I have two chars holding hex values e.g.:</p> <pre><code>char t = 0x4; char q = 0x4; </code></pre> <p>How would i compare if the two values held in the char are the same?? I tried</p> <pre><code>if (t == q) // should give me true </code></pre> <p>but no, any help, thanks!</p> http://stackoverflow.com/questions/257286/comparing-char-which-holds-hex-values-c/257291#257291 -6 Answer by BobS for Comparing Char which holds hex values C++ BobS 2008-11-02T20:12:46Z 2008-11-02T20:12:46Z <p>Ah, I found the solution:</p> <pre><code>if (t &amp; q) </code></pre> http://stackoverflow.com/questions/257286/comparing-char-which-holds-hex-values-c/257302#257302 1 Answer by Shadow2531 for Comparing Char which holds hex values C++ Shadow2531 2008-11-02T20:21:05Z 2008-11-02T20:21:05Z <p>Works fine for me.</p> http://stackoverflow.com/questions/257286/comparing-char-which-holds-hex-values-c/257304#257304 9 Answer by Brian R. Bondy for Comparing Char which holds hex values C++ Brian R. Bondy 2008-11-02T20:21:13Z 2008-11-02T20:38:40Z <p>A char is just an 8-bit integer. It doesn't matter if you initialized it with hex or decimal literal, in either case the value of the char will be the same afterwards. </p> <p>So: </p> <pre><code>char t = 0x4; char q = 0x4; if(t == q) { //They are the same } </code></pre> <p>It is equivalent to:</p> <pre><code>char t = 4; char q = 4; if(t == q) { //They are the same } </code></pre> <p>You mentioned that the above is not true, but you must have an error in your code or t and q must not be the same. </p> <p><strong>What you suggested...</strong></p> <blockquote> <p>if (t == q) // should give me true but no, any help, thanks!</p> </blockquote> <p><strong>is not correct. Why?</strong></p> <p>t &amp; q does a bitwise compare, returning a value where both aligned bits are 1. </p> <p>The term "if(t&amp;q)" would return true as long as any of the bits of t and q are in common. </p> <p>so if t = 3 which is in binary 00000011 and q = 1 which is in binary 00000001 then (t&amp;q) would return true even know they are not equal. </p>