📅  最后修改于: 2023-12-03 14:59:47.515000             🧑  作者: Mango
在 C++ 中 toupper() 函数用于将小写字母转换为大写字母。
toupper(int c)
c:要转换的小写字母。
函数返回将小写字母转换为大写字母后的字符。
以下示例演示了 toupper() 函数是如何工作的:
#include <iostream>
#include <ctype.h>
int main() {
char c = 'a';
std::cout << toupper(c) << std::endl;
return 0;
}
以上代码将输出:
A