N
nilesh
Hello,
I have a basic doubt. Consider following program :
#include<stdio.h>
int main()
{
int i, *ip;
i = 10;
ip = &i;
printf("%x\n", ip);
return 0;
}
When I print the value of ip i.e. the address of integer i, does it
prints the virtual address of integer i or physical address of i ?
TIA
../nilesh
I have a basic doubt. Consider following program :
#include<stdio.h>
int main()
{
int i, *ip;
i = 10;
ip = &i;
printf("%x\n", ip);
return 0;
}
When I print the value of ip i.e. the address of integer i, does it
prints the virtual address of integer i or physical address of i ?
TIA
../nilesh