View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25