#include #include void printLatinWord(char *word) { char *firstvowel; for(firstvowel = word; *firstvowel && strchr("aeiou", *firstvowel) == NULL; firstvowel++) { continue; } printf("%s%.*say ", firstvowel, firstvowel - word, word); fflush(stdout); } int main(int argc, char *argv[]) { int i; for (i = 1; i < argc; i++) { printLatinWord(argv[i]); } printf("\n"); return 0; }