View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25