View Code of Problem 25

#include <stdio.h>
int main(){
	int T,i;
	char C;
	scanf("%d",&T);
	for(i=0;i<T;i++){
		getchar();
		scanf("%c",&C);
		printf("%c\n",C+32);
	}
}

Double click to view unformatted code.


Back to problem 25