write a program to check whether the character is in lowercase or uppercase in c++ code example
Example 1: how to compare lower case character to uppercase cpp
for(int i=0;i<str.size();i++){
int c = str[i];
if (islower(c))
str[i] = toupper(c);
}
Example 2: check if character in string is uppercase c++
if (isupper(str[i])) {
// str[i] is uppercase
}
Example 3: check lowercase letters c++
char character = 'a'; //0110 0001
if(character & 0x20) {
//is lowercase
}