#include <stdio.h>

int main(void) {
	int val = 1234;
	printf("The address of val is: %p", &val);
	return 0;
}
