View Code of Problem 25

#include <stdio.h>
int main()
{
    int t,kz[100],c;
    char a;
    scanf("%d",&t);
    c=t;

    while (t!=0)
    {
       getchar();
       scanf("%c",&a);
       kz[t]=a+32;
       t--;
    }

    while (c!=0)
    {
       printf("%c\n",kz[c]);
       c--;
    }

    return 0;
}

Double click to view unformatted code.


Back to problem 25