show/hide this revision's text 2 fixed grammar, improved formatting, linked to reference for partial keyword

Hi, in C++ I have two chars holding hex values ie)e.g.:

char t = 0x4;
char q = 0x4;

How would i compare if the two values held in the char are the same?? I tried

if (t == q) // should give me true

but no, any help, thanks!

show/hide this revision's text 1

Comparing Char which holds hex values C++

Hi, in C++ I have two chars holding hex values ie)

char t = 0x4;
char q = 0x4;

How would i compare if the two values held in the char are the same?? I tried

if (t == q) // should give me true

but no, any help, thanks!