#include <stdio.h>

int main(void) {
	char* pointer[] = {"hallo"};
	puts(pointer[0]);
	return 0;
}
