prepare a function that takes as a parameter an string and returns the vowels (a, e, i, o, u). The function prototype should look like:
void countVowels(string str, int& aCt, int& eCt, int& iCt, int& oCt, int& uCt);
can you help with this one instead?