View Code of Problem 25

#include<stdio.h>

int main()
{
	char c;
	int t;
	scanf("%d", &t);
	getchar();
	while(t != 0)
	{
		c = getchar();
		getchar();
		if( c >= 'A' && c <= 'Z')
			c += 32;
		putchar(c);
		printf("\n");
		t--;
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25