View Code of Problem 25

#include <stdio.h>
#include <stdlib.h>
int main(){
	int T;
	scanf("%d",&T);
	char C;
	while(T>0){
		fflush(stdin);
		scanf("%c",&C);
		printf("%c\n",C+32);
		T--;
	}
	return 0;
} 

Double click to view unformatted code.


Back to problem 25