Answers for "c++ program to count uppercase and lowercase and special characters"

C++
4

convert all characters in string to uppercase c++

transform(str.begin(), str.end(), str.begin(), ::toupper);
Posted by: Guest on September-14-2020
-2

check lowercase letters c++

char character = 'a'; //0110 0001
if(character & 0x20) {
	//is lowercase
}
Posted by: Guest on April-19-2021

Code answers related to "c++ program to count uppercase and lowercase and special characters"

Browse Popular Code Answers by Language