View Code of Problem 25

#include<stdio.h>
#include<math.h>
#include<string.h>		
void main()
{
	int a,b,c,n,i=0;
	char x,y;
	scanf("%d",&n);
	for(i=0;i<n;i++)
	{
	
		scanf(" %c",&x);
		printf("%c\n",x+32);
	}
}

Double click to view unformatted code.


Back to problem 25