View Code of Problem 25

#include<stdio.h>
#include<math.h>


int main(){
	int a;
	char c;
	scanf("%d",&a);
	for(int i=0;i<a;i++){
		getchar();
		scanf("%c",&c);
	
		if(c>='A'&&c<='Z'){printf("%c\n",c+32);}
		
	}
}
	

Double click to view unformatted code.


Back to problem 25