• Write a recursive function named processString that takes a string as a single parameter and returns the number of sma
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
• Write a recursive function named processString that takes a string as a single parameter and returns the number of sma
• Write a recursive function named processString that takes a string as a single parameter and returns the number of small vowel letters (a,e,i,o,u) in the string. You are NOT allowed to use any loop structure (for, while, do/while) to solve this problem.
Defines a proper array of character of size 100 Reads a string and properly store it in the array Properly calls the function processString to find the number of small vowel letters (a,e,i,o,u) in the string and prints the returned value