View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25