#include<stdio.h>
int main()
{
    int a=10,*ptr;
     ptr=&a;
    printf("Address of variable a=%u\n",ptr);
    printf("value of variable a=%d\n",*ptr);
    printf("Address of variable p=%u\n",ptr);
    return 0;
}