View Code of Problem 25

#include<stdio.h>

int main(){
	int t;
	char c,d;
	scanf("%d",&t);
	while(t--)
	{
		c=getchar();
		d=c+32;
		printf("%c\n",d);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25