#include <stdio.h>

int main(void) {
	char* pointer[] = {"hallo"};
	char **p = pointer; 
	pointer = p;// SeppJ voll die Ahnung
	return 0;
}
