Valdosta State University

that accepts a string and returns the total number of vowels (a,e,i,o,u) in the string. Hint: (a) define a char array in method that defines the five vowels, (b) loop over each character in string, and for each character, loop over vowels array to see if one of them matches the character. For example: ................
................