C标准库 toupper函数

toupper()函数用于把小写字母转换为大写字母,不是小写字母的不变。

toupper()函数 语法

int toupper(int ch);

参数ch为待转换的字符。

toupper()函数的返回值:转换后的字符。

toupper()函数 示例

本示例演示把小写字母转换为大写字母。

#include"ctype.h"
#include"stdio.h"
main()
{
    char ch1,ch2;
    printf(" input a character:");/*输入一个字符*/
    scanf("%c",&ch);
    ch2=toupper(ch1);/*转换为大写*/
    printf("transform%c to%c.",ch1,ch2);
}

运行toupper()函数 示例结果如图所示。

toupper()函数

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程