View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25