Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
char *matrix[3][3]; //char **marix_ptr[3][3] = matrix; // so gehts nicht???
Wie sieht ein Zeiger auf matrix aus?
char *(*matrix)[3][3];
Glaub ich mal.