Answers for "how to capitalize a letter using ascii in c++"

C++
2

c++ char to uppercase

char choice; 
// it will instantly transform it to upper case without the need
// to convert it to int first
choice = (char)toupper(choice);
Posted by: Guest on December-30-2020

Code answers related to "how to capitalize a letter using ascii in c++"

Browse Popular Code Answers by Language