#include <stdio.h> int main(void) { char* pointer[] = {"hallo"}; char **p = pointer; pointer = p;// SeppJ voll die Ahnung return 0; }
Standard input is empty
prog.c: In function ‘main’:
prog.c:6:10: error: assignment to expression with array type
pointer = p;// SeppJ voll die Ahnung
^
Standard output is empty