#include #include #define MAX 40 void PrintPigLatin(const char* word); int main() { // creation of 5 word arrays, mazimum size 39 letters char word1[MAX], word2[MAX], word3[MAX], word4[MAX], word5[MAX]; printf("Input 5 words: "); scanf(" %s %s %s %s %s", word1, word2, word3, word4, word5); printf("\nPig Latin version of the 5 words:\n"); PrintPigLatin(word1); printf(" "); PrintPigLatin(word2); printf(" "); PrintPigLatin(word3); printf(" "); PrintPigLatin(word4); printf(" "); PrintPigLatin(word5); printf("\n"); return 0; } // Write your definition of the PrintPigLatin function here