if I have the following code:
int i = 5;
void * ptr = &i;
printf("%p", ptr);
Will I get the LSB address of i, or the MSB?
Will it act differently between platforms?
Is there a difference here between C and C++?
|
if I have the following code:
Will I get the LSB address of i, or the MSB? |
||||
|
Consider the size of If the architecture is little endian, then the lower address will have the LSB like below.
+------+------+------+------+
Address | 1000 | 1001 | 1002 | 1003 |
+------+------+------+------+
Value | 5 | 0 | 0 | 0 |
+------+------+------+------+
If the architecture is big endian, then the lower address will have the MSB like below.
+------+------+------+------+
Address | 1000 | 1001 | 1002 | 1003 |
+------+------+------+------+
Value | 0 | 0 | 0 | 5 |
+------+------+------+------+
So In mixed endian mode also, either little or big endian will be choosed for each task dynamically. Below logic will tells you the endianess
This behaviour will be same for both |
|||
|
|
|
It depends on the endianness of the platform; if it's a little-endian platform, you'll get a pointer to the LSB, if it's a big-endian platform it will point the MSB. There are even some mixed-endian plaforms, in that case Still, you can perform a quick check at runtime:
By the way, to print pointers you must use the |
|||||
|
This is platform dependent: it will be the lowest addressed byte, which may be MSB or LSB depending on your platform's endianness. Although this is not written in the standard directly, this is what's implied by section 6.3.2.3.7:
Yes
No: it is platform-dependent in both C and C++ |
|||||||
|
|
ptr stores the address of the starting byte of the integer object. Whether this is where the most or the least significant byte is stored depends on your platform. Some weird platforms even use mixed endianness in which case it'll be neither the MSB nor the LSB. There is no difference between C and C++ in that respect. |
|||
|
|
|
What it points is MSB for my VC++ 2010 and Digital Mars. But it is related to endianness. This question's answers give some infor for you: Detecting endianness programmatically in a C++ program. Here, user "none" says:
This gives some endianness info |
|||
|
|
It depends on the machine and the OS. On big endian machines and OS's you will get the MSB and on little endian machines and OS's you will get the LSB. Windows is always little endian. All (most ?) flavors of Linux/Unix on x86 is little endian. Linux/Unix on Motorola machines is big endian. Mac OS on x86 machines is little endian. On PowerPC machines it's big endian.
|
|||
|
|
ptris with%p, or by converting it tointptr_tand using the according print formatting macro. – Kerrek SB Aug 16 '12 at 10:41