View Code of Problem 25

#include<stdio.h>
int main()
{
  char s;
  int T;
  scanf("%d",&T);
  while(T--){
    getchar();
    scanf("%c",&s);
    printf("%c\n",s+32);
  }
}

Double click to view unformatted code.


Back to problem 25