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