You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//pointer contains address of another variable 'a' is pointer for address of 'p' int type variable
a=&p;
printf("address of %d is %u \n",p,a); // %u is used to print address of variable
printf("address of %d is %u \n",p,&p);
printf(" p is equal to ' *&p ' or (p = *&p) %d \n",*&p);// we can write p variable like '*&p' is is also a variable p and we can use it as simple p (p=*&p)