is vowel c++/c code example
Example: is vowel c++/c
bool is_vowel(char c){
if(c=='a'||c=='e'||c='i'||c=='o'||c=='u') return true;
return false;
}
bool is_vowel(char c){
if(c=='a'||c=='e'||c='i'||c=='o'||c=='u') return true;
return false;
}