View Code of Problem 25

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

int main()
{
    int n;
    char ch;
   scanf("%d",&n);
   getchar();
   while(n--)
   {

        ch=getchar();
    putchar(ch+32);
    printf("\n");
    getchar();
   }
    return 0;
}

Double click to view unformatted code.


Back to problem 25