C语言库toupper()函数

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

int main () {
   int i = 0;
   char c;
   char str[] = Tutorials Point;

   while(str[i]) {
      putchar (toupper(str[i]));
      i++;
   }

   return(0);
}

相关文章

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