View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25