#include <stdio.h> const char *numbers[] = { "one", "two", "three", NULL }; for (const char **p = numbers; *p; p++) { printf("%s\n", *p); }
// Windows-style const LPCSTR numbers[] = { "one", "two", "three", NULL }; for (const LPCSTR *p = numbers; *p; p++) { printf("%s\n", *p); }