View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25