C 语言库函数 - toupper()
C 语言标准库 <ctype.h> 函数 int toupper(int c) 用于将小写字母转换为大写字母
头文件
#include <ctype.h>
函数原型
下面是 toupper() 函数的原型
int toupper(int c);
参数
- c:要被转换为大写的字母
返回值
如果 c 有相对应的大写字母,则该函数返回 c 的大写字母,否则 c 保持不变。
返回值是一个可被隐式转换为 char 类型的 int 值
范例
下面的范例演示了 toupper() 函数的用法
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> #include <ctype.h> int main() { int i = 0; char c; char str[] = "WWW.Twle.cn Tutorials"; while(str[i]) { putchar (toupper(str[i])); i++; } printf("\n"); return(0); }
编译和运行以上范例,输出结果如下
$ gcc main.c && ./a.out
WWW.TWLE.CN TUTORIALS