#include <stdio.h>

main()
{
int p, k;

for (count = 65, p = 1 ; p <= 6 ; p++)
{
for (k = 1 ; k <= p ; k++)
{
printf("%c", count);
count++;
}

printf("\n");
}
}

+ Recent posts