View Code of Problem 25

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


}

Double click to view unformatted code.


Back to problem 25