📜  C语言中的toupper()函数

📅  最后修改于: 2021-05-25 21:24:09             🧑  作者: Mango

toupper()函数用于将小写字母转换为大写字母。即,如果传递的字符是小写字母,则toupper()函数会将小写字母转换为大写字母。它在ctype.h头文件中定义。

句法:

int toupper(int ch);

参数:它接受一个参数:

  • CH:这表示要被转换为大写字符。

返回值:该函数返回对应于ch的大写字符。

下面的程序说明了C语言中的toupper()函数:

范例1:-

// C program to demonstrate
// example of toupper() function.
#include 
#include 
  
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 
#include 
  
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的C基础课程》。