View Code of Problem 25

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


}

Double click to view unformatted code.


Back to problem 25