Computer Science, asked by abulkhairaks12, 1 year ago

code of following output in c++
1
23
456
78910

Answers

Answered by Rathin
0
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<"1
            23
            456
            78910";
getch();
}
Similar questions