write a c++ program to produce the following output:
A
A B
A B C
A B C D
A B C D E
Answers
Answered by
0
Answer:
#include<stdio.h>
void main()
{
printf("A\n");
printf("AB/n");
printf("ABC\n");
printf("ABCD\n");
printf("ABCDE\n");
}
Explanation:
Similar questions