c++ is char uppercase code example
Example 1: 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);
Example 2: uppercase capitalise character in string c++
str[i] = toupper(str[i]);