View Code of Problem 25

#include<stdio.h>

int main()
{
   int t;
   char a,b;
   scanf("%d",&t);
   getchar();
   while(t--)
   {
       scanf("%c",&a);
        getchar();
       b=a+32;
       printf("%c\n",b);
   }
}

Double click to view unformatted code.


Back to problem 25