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 exception handling? Does c++ support exception handling?
Why do we use classes in c++?
What is data structure in c++?
What is c++ virtual inheritance?
What do you mean by function pointer?
How to declaring variables in c++?
How many characters are recognized by ANSI C++?
Why do we use constructor?
What is the c++ programming language used for?
Write a function that swaps the values of two integers, using int* as the argument type?
Explain operator overloading.
Tell me an example where stacks are useful?
You want to link a c++ program to c functions. How would you do it?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
How do you clear a set in c++?