tolower() - C函式


C庫函式 int tolower(int c)轉換給定的字母為小寫。

宣告

以下是宣告的tolower()函式。

int tolower(int c);

引數

  • c -- 這是字母轉換為小寫。

返回值

這個函式返回小寫相當於c,如果存在的值,否則c保持不變。返回值可以隱式char為int值。

例子

下面的例子顯示的tolower()函式的用法。

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

int main()
{
   int i = 0;
   char c;
   char str[] = "YIIBAIS POINT";

   while( str[i] ) 
   {
      putchar(tolower(str[i]));
      i++;
   }
 
   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

yiibais yiibai