#include <stdio.h>

int main()
{
    int a,b;
    char ch='A';
    for(a=5;a<=15;a++)
    {
        for(b=0;b<=a;b++)
        printf("%c",ch);
        ch++;
    printf("\n");
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: