View Code of Problem 25

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


	}
}

		

Double click to view unformatted code.


Back to problem 25