is vowel c 2b 2b

Solutions on MaxInterview for is vowel c 2b 2b by the best coders in the world

showing results for - "is vowel c 2b 2b"
Regina
25 Jul 2016
1// c is a char
2auto isLowercaseVowel = (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u');
3auto isUppercaseVowel = (c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U');