25

#include< stdio.h >
main()
{
int **p,*a,b=1;
a=&b;
p=&a;
printf("%d",*p);
}

Output


-14


-14 is address of 'a'

Related Posts