write a program for the following program
A
AB
ABC
ABCD
ABCDE
Answers
Answered by
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