View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25