View Code of Problem 25

#include<stdio.h>
int main()
{
	int T;
	char c1,c2;
	scanf("%d",&T);
	while(T--)
	{
		scanf("%c",&c1);
		if(c1>=65&&c1<=90)
		{
		    c2=c1+32;
		    printf("%c\n",c2);
		}
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25