📜  toupper c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:53.854000             🧑  作者: Mango

代码示例4
int result = toupper(charecterVariable);// return the int that corresponding upper case char
//if there is none then it will return the int for the original input.
//can convert int to char after
char result2 = (char)toupper(variableChar);