Comparing Char which holds hex values C++ - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T23:49:23Zhttp://stackoverflow.com/feeds/question/257286http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/257286/comparing-char-which-holds-hex-values-c0Comparing Char which holds hex values C++BobS2008-11-02T20:08:57Z2008-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-6Answer by BobS for Comparing Char which holds hex values C++BobS2008-11-02T20:12:46Z2008-11-02T20:12:46Z<p>Ah, I found the solution:</p>
<pre><code>if (t & q)
</code></pre>
http://stackoverflow.com/questions/257286/comparing-char-which-holds-hex-values-c/257302#2573021Answer by Shadow2531 for Comparing Char which holds hex values C++Shadow25312008-11-02T20:21:05Z2008-11-02T20:21:05Z<p>Works fine for me.</p>
http://stackoverflow.com/questions/257286/comparing-char-which-holds-hex-values-c/257304#2573049Answer by Brian R. Bondy for Comparing Char which holds hex values C++Brian R. Bondy2008-11-02T20:21:13Z2008-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 & q does a bitwise compare, returning a value where both aligned bits are 1. </p>
<p>The term "if(t&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&q) would return true even know they are not equal. </p>