I have the following example in C:
int x = 123;
size of int = 4 bytes.
hex value = 7b
binary value = 0111 1011
What will be the hex/binary value if my x was a char?
char x = 123;
size of char = 1 byte.
hex value = ??
binary value = ??
|
|
|
Since Try this:
Output is:
As for binary value .... google is your friend This site seems to explain things well |
||||
|
|
|
Its hex and binary values will be exactly the same (except possibly for leading zeros if you want to expand it to the full size). That's because 123 fits just fine into a Assuming an 8-bit byte and 4-byte int:
The binary value
If you were to attempt to place a value into an 8-bit
This is detailed in C99, section
|
||||
|
|
Decimal 123 is 0x7b in hex and 0111 1011 in binary regardless of the original type. The only times the type gets in the way is if there is overflow (eg. |
|||
|
It would be the same. 0x7b hex , 0111 1011 Note that if your integers are 4 bytes, its bits are 0000 0000 0111 1011 though. |
|||
|
|