#include <stdio.h>

int main(void) {
	int i = 5;
	int *p = &i;
	
	printf("memory location of ptr: %p\n",  &p);
	return 0;
}
