Select Git revision
arrays-and-pointers-10.c
arrays-and-pointers-10.c 161 B
#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;
}