int i=512;
char *c = (char *)&i;
c[0] =1;
printf("%d",i);
this displays "513", it adds 1 to i.
int i=512;
char *c = (char *)&i;
c[1] =1;
printf("%d",i);
whereas this displays 256. Divides it by 2. Can someone please explain why? thanks a lot
this displays "513", it adds 1 to i.
whereas this displays 256. Divides it by 2. Can someone please explain why? thanks a lot |
|||||
|
BinaryThe 32-bit number 512 expressed in binary, is just:
because 2 to the power of 9 is 512. Conventionally, you read the bits from right-to-left. Here are some other decimal numbers in binary:
The Cast: Reinterpreting the Int as an Array of BytesWhen you do this:
you are interpreting the 4-byte integer as an array of characters (8-bit bytes), as you probably know. If not, here's what's going on:
takes the address of the variable
reinterprets it (or casts it) to a pointer to char type. This means it can now be used like an array. Since you know an Depending on the endianness of the system, the bytes of the number might be laid out: most significant byte first (big endian), or least significant byte first (little endian). x86 processors are little endian. This basically means the number 512 is laid out as in the example above, i.e.:
I've grouped the bits into separate 8-bit chunks (bytes) corresponding to the way they are laid out in memory. Note, you also read them right-to-left here, so we can keep with conventions for the binary number system. ConsequencesNow setting
which is Setting
which is Do note on a big endian system, the bytes would be stored in reverse order to a little endian system. This would mean you'd get totally different results to ones you got if you ran it on one of those machines. |
|||||||||||||
|
|
Remember char is 8 bit, 512 is bit representation is when you do
when you do c[0] = 1
you make it when you do c[1] = 1, you make it |
|||
|
|
|
Before you wonder why what you're seeing is "odd", consider the platform you're running your code on, and the endianness therein. Then consider the following
On my platform (Macbook Air, OS X 10.8, Intel x64 Arch)
Couple what you see above with what you have hopefully read about endianness, and you can clearly see my platform is little endian. So whats yours? |
||||
|
|
|
Since you are aliasing an
will set the second byte of On a little-endian machine and a compiler with 32-bit
After the assignment,
and therefore it went from 512 to 256. Now you should understand why |
||||
|
|
|
It's because your machine is little endian, meaning the least-significant byte is stored first in memory. You said
Now we interpret that same memory location as a character array by doing
Now we change
Which means if we look at it as a little endian Now if we go back and change
Now we go back and interpret it as a little endian |
|||
|
|
|
It's depends on the machine whether that is C language doesn't guarantee about this .
(0x12345678 suppose address of this int)
Similarly for 256 also : because your c1 will have the address of 2nd byte from right. in figure below,
So its implemention of representation of numbers in our system |
||||
|
|