View Code of Problem 25

#include<stdio.h>
#include<string.h>
main()
{
   int i,m;
   char a,c;
   scanf("%d",&m);
   while(m--)
   {
   	getchar();
   	scanf("%c",&a);
   	c=a+32;
   	printf("%c",c);
   	printf("\n");
   }
 } 

Double click to view unformatted code.


Back to problem 25