#include <stdio.h>
int main()
{
int *p = (int*) 60; --- Line 1
int *q = (int*) 40; --- Line 2
printf("%d", p-q); //Output is 5
return 0;
}
Could anybody please explain me the output ?
|
It means the (implementation-defined) action of assigning an integral value to a pointer happens. This often means that Since this is implementation-defined anything could happen, as described by your implementation. But isn't this entirely worthless?It's most certainly not, it is used a lot in embedded hardware programming to access certain features or call built-in functions. Most likely on your system |
|||
|
|
|
It's making |
|||
|
|
|
You're creating two pointer values and then doing pointer math. Apparently |
|||
|
|
|
Each pointer, See this site for more information about pointer arithmetic. |
|||
|
|
|
The statement declares a pointer to an integer at address 60
You probably already know this; The danger of doing this is: how do you know there is actually an integer stored at address 60? |
||||
|
|
|
The int pointer initialization is to ensure that the pointer is pointing to the memory address of an integer, in this case memory location 60 and 40 for pointers p and q respectively. What the output is giving you is the difference in memory locations. Usually you expect 60-40 to be 20, but in this case, you are getting 5 because in your machine each integer occupies 4 bytes or 32 bits. So you can think of it like this: The first integer at 40 takes 4 places, so the next integer is at 44, then 48, then 52. Thus when getting the difference of memory locations, the program takes each 4 byte block as 1 block and there is a difference of 5 blocks between 40 and 60. In Pointer math, this can be obtained like abs(mem_location1 - mem_location2)/sizeof(int) (i.e. no. of bytes occupied by an integer). HTH. :) |
|||
|
|
pis pointer tointat 60 bytes from the beginning of the address space.qis a pointer tointat 40 bytes from the beginning of the address space. Their difference is 20 bytes or20/sizeof(int) = 5intelements. – Hristo Iliev Jul 20 '12 at 16:24