Below function returns, if passes character is vowel or not.
This is done by using Pete Becker's table of bit masking.
bool isvowel(char ch){
return (0x208222>>(ch&0x1f))&1;
}
Below function returns, if passes character is vowel or not.
This is done by using Pete Becker's table of bit masking.
bool isvowel(char ch){
return (0x208222>>(ch&0x1f))&1;
}
For further actions, you may consider blocking this person and/or reporting abuse
InfoSpark Labs -
Jelena Petkovic -
Vinicius Porto -
Aditya Pratap Bhuyan -
Top comments (0)