Write a function to remove all the vowels in a string. For example, if str = "There", then after removing all the vowels, str = "Thr". This function should use the predefined function substr and also call the isVowel function you wrote previously to determine if a letter is a vowel. Write a driver to test this function.