//C program to Demonstrate Alphabet Floyd's
//Triangle using for loop
#include <stdio.h>

void alpha_floyd(int n)
{
    int k='a';
    for(int i=1;i<=n;i++){
        for(int j=1;j<=i;j++)
            printf("%c",k++);
            printf("\n");
    }
}
int main()
{
    
    alpha_floyd(6);
    return 0;
}

Embed on website

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