program to print this triangle
*
* *
* * *
Answer Posted / roma
for(i=1; i<=3; i++)
{
cout<<"*"
}
getch();
| Is This Answer Correct ? | 4 Yes | 11 No |
Post New Answer View All Answers
What is public, protected, private in c++?
What is the difference between while and do while loop? Explain with examples.
What is a dll entry point?
List the advantages of inheritance.
Write a short code using c++ to print out all odd number from 1 to 100 using a for loop
Is it possible to have a recursive inline function in c++?
What do you mean by delegate? Can a user retain delegates?
What are the different types of comments allowed in c++?
What is decltype c++?
What is srand c++?
What is the latest c++ version?
What are the general quetions are in DEna bank manager IT/System interviews?
Explain the concept of memory leak?
What is the fastest c++ compiler?
Explain the isa and hasa class relationships. How would you implement each?