Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

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);
 
PREVIOUS NEXT
Tagged: #char #uppercase
ADD COMMENT
Topic
Name
4+3 =