Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
This is C++ coding assignment please help me out Asks the user to enter any sequence of characters The program should display all the lower-case
This is C++ coding assignment
please help me out
- Asks the user to enter any sequence of characters
- The program should display all the lower-case vowels that are present and the number of times each vowel occurs
- The program should display all the upper-case vowels that are present and the number of times each vowel occurs
- The program should display the upper-case vowel which appears most frequently in the user input AND the number of times it appeared.
- The program should display the lower-case vowel which appears most frequently in the user input AND the number of times it appeared.
- The user must be asked if he/she wants to continue entering values or quit.
- You must demonstrate effective use of the new and delete operators. THIS IS THE POINT OF THE QUIZ
- Remember to comment your code
- Use meaningful or mnemonic variable names
- You must use a pointer to a variable of type char to store the user input, and you MUST allocate the EXACT amount of memory to store all the characters entered by the user. For example:
- If the user types Awq, then you need to use the new operator to allocate dynamic memory for a pointer to a char of size 3: UserInputCharArray = new char[3];
- If the user types 300 letters, then you need to use the new operator to allocate memory for a pointer to a char of size 300: UserInputCharArray = new char[300];
- In order to accomplish this, you must capture the user input one char at a time using a loop. As you are capturing the chars you need to be clever enough to count