write a c++ program that gives output
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
using looping statement
Answers were Sorted based on User's Feedback
Answer / akhil
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i,j,n;
cout<<"enter limit";
cin>>n;
for(i=1;i<=n;i++)
//cout<<"/n"; for printing line by line
for(j=1;j<=i;j++)
cout<<j;//
getch();
}
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / ramesh.bugatha78
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i;j++)
cout<<j;
cout<<"\n";
}
| Is This Answer Correct ? | 8 Yes | 0 No |
Differentiate between a template class and class template in c++?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
Check for Balanced Parentheses using Stack?
What are enumerations?
How a new element can be added or pushed in a stack?
Why use of template is better than a base class?
Write a Program to find the largest of 4 no using macros.
Can inline functions have a recursion? Give the reason?
what is data abstraction in C++?
Brief explaination about #include<iostream.h>, cin and cout
Write a program which employs Recursion
If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?