View Code of Problem 25

#include <stdio.h>
#include<string.h>
#include<ctype.h> 
int main(int argc, char *argv[])
{
	int t;
	char c;
	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