View Code of Problem 25

#include "stdio.h"
void main()
{
    int n;
    char i;
    scanf("%d",&n);
    while (n--)
    {
        scanf("%c",&i);
        i-=32;
        printf("%c\n",i);
    }

}

Double click to view unformatted code.


Back to problem 25