橘子味的心
标题:C库函数 tolower()

C库函数 tolower()

#include <stdio.h>

#include <ctype.h>



int main () {

   int i = 0;

   char c;

   char str[] = "TUTORIALS POINT";



   while( str[i] ) {

      putchar(tolower(str[i]));

      i++;

   }



   return(0);

}

目录

分类