View Code of Problem 25

#include<stdio.h>
int main()
{
  int T;
  char c1,c2;
  scanf("%d",&T);
  while(T--)
  {
    scanf("%c",&c1);
    c2=c1+32;
    printf("%c",c2);
  }
  return 0;
}

Double click to view unformatted code.


Back to problem 25