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);
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...