void print_string(char *name[], int n) { int i = 0; char *p; p = name[0]; while (i < n) { p = *(name + i++); printf("%s\n", p); } }