//07_Pointer //parc_03 //wap to print Address of the varable #include #include void main() { int i=3; int *j; j=&i; clrscr(); printf("\n Address of i=%u",&i); printf("\n Address of i=%u",j); printf("\n Address of j=%u",&j); printf("\n Value of j=%u",j); printf("\n Value of i=%d",i); printf("\n Value of i=%d",*(&i)); printf("\n Value of i=%d",*j); getch(); } /* -------output-------- Address of i=65524 Address of i=65524 Address of j=65522 Value of j=65524 Value of i=3 Value of i=3 Value of i=3 */