#include <stdio.h>

int main(int _c,char **_v){
	int *p,a=5;
	p=&a;
	printf("At the location p=%p we have a variable that is named a in the program and it's value is %d\n",p,*p);
}
