Answered step by step
Verified Expert Solution
Question
1 Approved Answer
in C Language. Pig Latin Filename: PIGLATIN Pig latin is a simple code. To convert a word to pig latin, break it at the first
in C Language.
Pig Latin Filename: PIGLATIN Pig latin is a simple code. To convert a word to pig latin, break it at the first vowel, put the leading consonants at the end, followed by 'ay.' If the irst letter is a vowel, just put 'hay' at the end. For example, 'cat' becomes 'atcay', 'frog' becomes 'ogfray' and 'ant' becomes 'anthay'. The Problem: Convert a paragraph into pig latin. The Input: A paragraph. Words will either be separated either by a single space, or by a period and a single space. The letter 'Y" will never be the first vowel, so you won't have to handle words like psychology or xylo- phone. Capital letters will only appear as the first letter of a word. There will be no numbers, contrac tions, hyphenations, etc. - just words. The Output: The paragraph, converted into pig latin. Note that you must maintain proper leading capitalization (Cat becomes Atcay.) Sample Input: This is a test of the Pig Latin program. These simple phrases should just about test all conditions. Good luck. Sample Output: Isthay ishay ahay esttay ofhay ethay Igpay Atinlay ogrampray. Esethay implesay asesphray ouldshay ustjay abouthay esttay allhay onditionscay. Oodgay ucklayStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started