Computer Science, asked by Arighnach, 10 months ago

write a program for the following program
A
AB
ABC
ABCD
ABCDE

Answers

Answered by Yamini1999
0

Answer:

#include<stdio.h>

#include<conio.h>

void main()

{

char i,j;

for(i='A';i<='E';i++)

{

for(j='A';j<=i;j++)

{

printf("%c",j);

}

printf("\n");

}

getch();

}

Explanation

Similar questions