Hi!
I have a
signed int iA
and an unsigned int uiB!
Now,
is
if (iA > uiB) the same as if (uiB < iA)?
The question behind it,
is there a general rule, which says, iA is always converted to unsigned int,
and then the comparison is processed? Or is the conversion different, depending which
data type comes first in the if statement?
Thanks for your remarks,
AB