int i = 0; char *str[] = {"Zero", "One", "Two", "Three", "Four", "\0"}; int main(void) { while(*str[i] != '\0') printf("s\n", str[i++]); while(1); }