View Code of Problem 25

#include<string.h>
#include<math.h>
#include<stdio.h>
#include<ctype.h>
int main()
{
	char c;
	int t;
	scanf("%d",&t);
	getchar();
	while(t--)
	{
		c=getchar();
		if(isupper(c)) printf("%c\n",c+32);
		getchar();
		}	
	return 0;
 } 

Double click to view unformatted code.


Back to problem 25