📅  最后修改于: 2020-09-25 07:10:06             🧑  作者: Mango
int toupper(int ch);
toupper()
函数将ch
转换为其大写版本(如果存在)。如果字符的大写版本不存在,则保持不变。从a到z的小写字母分别转换为从A到Z的大写字母。
如果ch
的值不能表示为无符号字符或不等于EOF,则toupper()
的行为是不确定的。
它在
ch
:要转换的字符
toupper()
函数返回ch
的大写版本(如果存在)。否则返回ch
。
#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.