#include <stdio.h>

int main(void) {
	char a;
	char b;
	int c;
	char d;
	double e;
 	printf("char :%lu:%p\n", sizeof(a),&a);
	printf("char :%lu:%p\n", sizeof(b),&b);
	printf("int :%lu:%p\n", sizeof(c),&c);
	printf("char :%lu:%p\n", sizeof(d),&d);
	printf("double :%lu:%p\n", sizeof(e),&e);

	return 0;
}
