Computer Science, asked by StudyPartner, 1 year ago

Write 'C' program for the following output :
*
**
***
****
*****
Pls reply fast no C++ only C

Answers

Answered by varadharajuludhanush
2
#include(iostream.h)
#include(conio.h)
void main()
(
clrscr();
int *;
cout<<"*";
cout<<"**";
cout<<"***";
cout<<"****";
cout<<"*****";
getch();
)

StudyPartner: Thanks for the answer, but is it possible for you to use Iteration Control Structure instead? Sorry for the trouble and thanks again.
Similar questions