Answers for "how convert chars toupper 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

Browse Popular Code Answers by Language