View Code of Problem 25

#include<stdio.h>
int main()
{
    int t;
    char str;
    scanf("%d",&t);
    while(t>0)
    {
    	getchar();
    	scanf("%c",&str);
    	str=str-'A'+'a';
    	printf("%c\n",str);
    	t--;
	}
}

Double click to view unformatted code.


Back to problem 25