Computer Science, asked by merin03rose, 11 months ago

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 allanaukao
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