show/hide this revision's text 3 added 24 characters in body

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.

So:

char t = 0x4;
char q = 0x4;
if(t == q)
{
 //They are the same
}

It is equivalent to:

char t = 4;
char q = 4;
if(t == q)
{
 //They are the same
}

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.

What you suggested...

if (t == q) // should give me true but no, any help, thanks!

is not correct. Why?

t & q does a bitwise compare, returning a value where both aligned bits are 1.

The term "if(t&q)" would return true as long as any of the bits of t and q are in common.

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.

show/hide this revision's text 2 deleted 17 characters in body

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 will be the same.

So:

char t = 0x4;
char q = 0x4;
if(t == q)
{
 //They are the same
}

It is equivalent to:

char t = 4;
char q = 4;
if(t == q)
{
 //They are the same
}

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.

What you suggested...

if (t == q) // should give me true but no, any help, thanks!

is not correct. Why?

t & q does a bitwise compare, returning a value where both aligned bits are 1.

The term "if(t&q) &q)" would return true as long as any of the bits of t and q are in common.

so if t = 3 which is in binary 00000011 and q = 1 which is in binary 00000001 then (t&q) would return true in that case too even know they are not equal.

show/hide this revision's text 1

A char is just an 8-bit integer. It doesn't matter if you initialized it with hex or decimal.

So:

char t = 0x4;
char q = 0x4;
if(t == q)
{
 //They are the same
}

It is equivalent to:

char t = 4;
char q = 4;
if(t == q)
{
 //They are the same
}

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.

What you suggested...

if (t == q) // should give me true but no, any help, thanks!

is not correct. Why?

t & q does a bitwise compare, returning a value where both aligned bits are 1.

if(t&q) would return true as long as any of the bits of t and q are in common.

so if t = 3 which is in binary 00000011 and q = 1 which is in binary 00000001 then (t&q) would return true in that case too even know they are not equal.