View Code of Problem 25

#include <stdio.h>
int main(){
  int t;
  scanf("%d",&t);
  int i;
  char c,a;
  for(i=0;i<t;i++){
	  getchar();
    scanf("%c",&c);
    a=c+32;
    printf("%c\n",a);
  }
  
  
  
  
  
  return 0;



}

Double click to view unformatted code.


Back to problem 25