View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25