toupper()函数用法及其详解

描述:

C 库函数 int toupper(int c) 把小写字母转换为大写字母。

声明:

int toupper(int c);

参数:

  • c – 这是要被转换为大写的字母。

返回值:

如果 c 有相对应的大写字母,则该函数返回 c 的大写字母,否则 c 保持不变。
返回值是一个可被隐式转换为 char 类型的 int 值。

示例:

#include <stdio.h>
#include <ctype.h>
int main()
{
   int i = 0;
   char c;
   char str[] = "runoob";
   while(str[i])
   {
      putchar (toupper(str[i]));
      i++;
   }
  return 0;
}

编译运行结果如下:

RUNOOB
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐