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