#include <stdio.h>

main()
{
int p, k;

for (p = 65 ; p <= 69 ; p++)
{
for (k = 65 ; k <= p ; k++)
printf("%c", k);

printf("\n");
}
}

+ Recent posts