C 庫函數 - toupper()

C 標準庫 - <ctype.h> C 標準庫 - <ctype.h>

描述

C 庫函數 int toupper(int c) 把小寫字母轉換為大寫字母。

聲明

下面是 toupper() 函數的聲明。

int toupper(int c);

參數

  • c -- 這是要被轉換為大寫的字母。

返回值

如果 c 有相對應的大寫字母,則該函數返回 c 的大寫字母,否則 c 保持不變。返回值是一個可被隱式轉換為 char 類型的 int 值。

實例

下面的實例演示了 toupper() 函數的用法。

#include <stdio.h>
#include <ctype.h>

int main()
{
   int i = 0;
   char c;
   char str[] = "W3Cschool Tutorials";
   
   while(str[i])
   {
      putchar (toupper(str[i]));
      i++;
   }
   
  return(0);
}

讓我們編譯并運行上面的程序,這將產生以下結果:

W3CSCHOOL TUTORIALS

C 標準庫 - <ctype.h> C 標準庫 - <ctype.h>