Sample Output from Program : ***************************************************** * You will be prompted to enter a string of * * words . The string will be converted into * * Pig Latin and the results displayed . * * Enter as many strings as you would like . * ****************************************************** Enter a group of words or ENTER to quit : Computer Programming is fun to learn ! Original words : Computer Programming is fun to learn ! New Words : omputercayogrammingprayiswayunfayotayearnlay ! Enter a group of words or ENTER to quit : Quit Pig Latin Hint : If a word begins with one or more consonants , move the consonant or consonant cluster to the end of the word . Add the letters " ay " to the end of the word . So , " pig " would be " igpay ," and “ latin ” would be “ atinlay .” Step 2 : Processing Logic Using the pseudocode below , write the code that will meet the requirements . Main function Display the heading While the condition is true Prompt the user for group of words or Enter to quit Display original words Call function pigLatinString ( ) End while pigLatinString ( ) function Declare and initialize string variables len , counter , start , begin , word and newString While condition is true Call find () and pass a space and start as parameters and return the returned value to start if start equals to string :: npos jump outside the loop permanently call substr () function display the word update newString increment start by one assign start to begin End While Call substr () Update newString Return newString Step 3 : Create a New Project Create a new project and name it LAB5B . Write your code using the Processing Logic in Part B , Step 2 . Make sure you save your program . Step 4 : Compile and Execute a ) Compile your program . Eliminate all syntax errors .