Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

ALPHABET PATTERN_10

E
DD
CCC
BBBB
AAAAA




for(i=5;i>=1;i--)
    {
        for(j=5;j>=i;j--)
        {
            printf("%c",'A'-1 + i);
        }
        printf("\n");

    }



This post first appeared on Programming With C And C++, please read the originial post: here

Share the post

ALPHABET PATTERN_10

×

Subscribe to Programming With C And C++

Get updates delivered right to your inbox!

Thank you for your subscription

×