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 should main() return in c and c++?
Can create new c++ operators?
What do you mean by const correctness?
What is the difference between the functions memmove() and memcpy()?
What is the return value of the insertion operator?
What are the rules about using an underscore in a c++ identifier?
What is flush programming?
Explain virtual destructor?
Differentiate between an inspector and a mutator ?
When should you use global variables?
What are static member functions?
why is iostream::eof inside a loop condition considered wrong?
What is the use of class in c++?
What is c++ prototype?
Is c# written in c++?