#include <stdio.h> int main (void) { char a[][5] = { "Dies", "ist", "ein", "Test", "" }; for (char **p = a; **p; p++) printf ("%s\n", p); return 0; }