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
Difference between struct and class in terms of access modifier.
Define a constructor?
Are c and c++ different?
What is a tuple c++?
How do you master coding?
What is do..while loops structure?
Can you use the function fprintf() to display the output on the screen?
Is c++ pass by reference or value?
What does floor mean in c++?
What is a virtual destructor? Explain the use of it?
What are pointer-to-members in C++? Give their syntax.
How compile and run c++ program in turbo c++?
Is nan a c++?
What is setbase c++?
Explain what is oop?