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!
|
2 | fixed grammar, improved formatting, linked to reference for partial keyword | ||
|
Hi, in C++ I have two chars holding hex values ie)e.g.:
How would i compare if the two values held in the char are the same?? I tried
but no, any help, thanks! |
||||
|
1 |
|
||