#include <stdio.h>

int main()
{
	char *str[] = {
		"abc",
		"def"
	};
	
	printf("%p\n", str);
	
	return 0;
}