#include <stdio.h>

char a[][5] = { "Dies", "ist", "ein", "Test", NULL };

int main (void)
{
  for (char **p = a; *p; p++)
    printf ("%s\n", *p);
  return 0;
}