📜  C++ toupper()(1)

📅  最后修改于: 2023-12-03 14:59:47.515000             🧑  作者: Mango

C++ toupper() 函数介绍

在 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
注意事项
  • toupper() 函数只能将小写字母转换为大写字母,对于已经是大写字母或非字母的字符则不做处理。
  • 如果 c 不是字母,则函数返回其原值。
  • toupper() 函数必须包含头文件 ctype.h。