#include <stdio.h>
int main()
{
	int a = 42;
	void* p = &a;
	printf("Pointer address: %08p", p);
	return 0;
}