This is a newbie question regarding Bitwise Operators in C:
The variable original is initialized to 0xABC.
unsigned int original = 0xABC;
I know that 0xA = 10 in HEX
but what does 0xABC mean? Testing it in the compiler I get the following value "2748". But how does this value came to be?