Question: Write a function to determine if an input word contains single vowel or not. The function should return true if word contains only one vowel.

Write a function to determine if an input word contains single vowel or not. The function should return true if word contains only one vowel. You can assume all the letters in the word are in lowercase. For example singleVowelWord(cat) should return true, while singleVowelWord(tomorrow) should return false. (Hint: your program needs to count the number of vowels in the word. It should return true if the count is equal to one, false otherwise).

c++ programming

The function prototype is given as the following:

bool singleVowelWord(string word);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!