Question: c++ please explain/ comment on how you wrote the code Pig Latin is an old English game, where you alter a word based on two

c++ please explain/ comment on how you wrote the code
Pig Latin is an old English game, where you alter a word based on two simple rules. 1) If the first letter is a consonant, move it to the end and add "ay" to the end. 2) If the first letter is a vowel, i.e. 'a', 'e', 'i', 'o', or 'u', add "way" to the end. jennifer would be enniferjay austin would be austinway Write a program to statically allocate memory for a c-style string on the stack for up to 256 characters: Please allow the user to enter a word. Write a function, void fun(char *a), to: Print the word in Pig Latin. Precondition: You can assume the word is all lowercase. Postcondition: The original array should not be altered
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
