toupper()函数用于将小写字母转换为大写字母。即,如果传递的字符是小写字母,则toupper()函数会将小写字母转换为大写字母。它在ctype.h头文件中定义。
用法:
int toupper(int ch);
参数:它接受一个参数:
- ch:这表示要转换为大写字母的字符。
返回值:此函数返回对应于ch的大写字符。
以下示例程序旨在说明C语言中的toupper()函数:
示例1:
// C program to demonstrate
// example of toupper() function.
#include <ctype.h>
#include <stdio.h>
int main()
{
char ch;
ch = 'g';
printf("%c in uppercase is represented as %c",
ch, toupper(ch));
return 0;
}
输出:
g in uppercase is represented as G
示例2:
// C program to demonstrate
// example of toupper() function.
#include <ctype.h>
#include <stdio.h>
int main()
{
int j = 0;
char str[] = "geekforgeeks\n";
char ch;
while (str[j]) {
ch = str[j];
putchar(toupper(ch));
j++;
}
return 0;
}
输出:
GEEKFORGEEKS
相关用法
- C语言 tolower()用法及代码示例
- C语言 strlwr()用法及代码示例
- C语言 putchar()用法及代码示例
- C++ iswblank()用法及代码示例
- C++ raise()用法及代码示例
- C++ feupdateenv()用法及代码示例
- C++ exp2()用法及代码示例
- C++ iswpunct()用法及代码示例
- C++ towupper()用法及代码示例
- C语言 strrev()用法及代码示例
- C++ iswxdigit()用法及代码示例
- C++ atexit()用法及代码示例
- C++ strcspn()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 toupper() function in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。