hwo to check i lower case in 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
}