View Code of Problem 25

#include<stdio.h>
int main()
{
	int i;
	char a,b;
	scanf("%d\n",&i);
	for(;;i--)
	{	

	a=getchar();
	if(a>=65&&a<=90)
	{b=32+a;
	printf("%c\n",b);}
	}
	return 0;
} 

Double click to view unformatted code.


Back to problem 25