Skip to content

Instantly share code, notes, and snippets.

@ethagnawl
Created January 12, 2018 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ethagnawl/500d4eaa7c7db85dc82df07b140e647a to your computer and use it in GitHub Desktop.
Save ethagnawl/500d4eaa7c7db85dc82df07b140e647a to your computer and use it in GitHub Desktop.
print array of strings in c
void print_words(char **words) {
for (; *words; words++) {
char *word = *words;
while (*word) {
putchar(*word++);
}
putchar('\n');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment