40

int main()
{
int a=2,*p;
p=&a-1;
printf("%d %d",*++*&p,&*&a);
}

Output:


2 -12



here -12 is address of 'a'.

Related Posts