View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25