Question: Please do this in C++ FOR A BEGINNER 2. Write a value returning string function called MonthAbbrev that takes an int variable month as a
Please do this in C++ FOR A BEGINNER
2. Write a value returning string function called MonthAbbrev that takes an int variable month as a parameter.
The parameter, month, represents the number of the month. The function returns the name of the month.
Say for example if month is 3, it returns March, if 11, returns November etc.
3. Write a progam that reads a string and outputs the number of times each lowercase vowel appears in it. Your program must contain a function with one of its parameters as a string variable, and return the number of times each lowercase vowel appears in it. Also write a program to test your function. (Note that if str is a variable of type string, then str.at(i) returns the character at the ith position. The position of the first character is 0. Also, str.length() returns the length of the str, that is, the number of characters in str.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
