consider
int p=10;
int *q=&p;
now my question is how does the compiler (or any type of mechanism)
bind q and p .i.e. memory location of a variable p is bound in a
variable q.
How does this memory mapping take place. Is there any specific
hardware mechanism that helps this mapping.
int p=10;
int *q=&p;
now my question is how does the compiler (or any type of mechanism)
bind q and p .i.e. memory location of a variable p is bound in a
variable q.
How does this memory mapping take place. Is there any specific
hardware mechanism that helps this mapping.
Comment