Does C treat hexadecimal constants (e.g. 0x23FE) and signed or unsigned int?
Amr
|
feedback
|
|
The number itself is always interpreted as a non-negative number. Hexadecimal constants don't have a sign or any inherent way to express a negative number. The type of the constant is the first one of these which can represent their value:
| |||||||||||||
feedback
|
|
It treats them as
| |||||||||
feedback
|