checking char in lower or upper c++ code example
Example: check lowercase letters c++
char character = 'a'; //0110 0001
if(character & 0x20) {
//is lowercase
}
char character = 'a'; //0110 0001
if(character & 0x20) {
//is lowercase
}