📜  C++ toupper()

📅  最后修改于: 2020-09-25 07:10:06             🧑  作者: Mango

C++中的toupper() 函数将给定字符转换为大写。

toupper()原型

int toupper(int ch);

toupper() 函数将ch转换为其大写版本(如果存在)。如果字符的大写版本不存在,则保持不变。从a到z的小写字母分别转换为从A到Z的大写字母。

如果ch的值不能表示为无符号字符或不等于EOF,则toupper()的行为是不确定的。

它在头文件中定义。

toupper()参数

ch :要转换的字符

toupper()返回值

toupper() 函数返回ch的大写版本(如果存在)。否则返回ch

示例:toupper() 函数的工作方式

#include 
#include 
#include 
#include 

using namespace std;

int main()
{
    char str[] = "John is from USA.";

    cout << "The uppercase version of \"" << str << "\" is " << endl;

    for (int i=0; i

运行该程序时,输出为:

The uppercase version of "John is from USA." is 
JOHN IS FROM USA.