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
Why is standard template library used?
What is struct c++?
Which function cannot be overloaded c++?
What is the use of ::(scope resolution operator)?
Why are arrays usually processed with for loop?
Why can’t you call invariants() as the first line of your constructor?
What is the meaning of c++?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Which c++ compiler is best?
What is the most common mistake on c++ and oo projects?
What is the best c c++ compiler for windows?
what are Access specifiers in C++ class? What are the types?
Program to check whether a word is a sub-string or not of a string typed
What is c++ & why it is used?
What is c++ stringstream?