program to print this triangle
*
* *
* * *
Answer Posted / jayasreesampath
#include<stdio.h>
main()
{
int i,j;
for(i=1;i<=3;i++)
{
for(j=1;j<=3;j++)
printf("\n",i,j);
}
}
| Is This Answer Correct ? | 23 Yes | 91 No |
Post New Answer View All Answers
Which software is best for coding?
Explain abstraction.
Will a catch statement catch a derived exception if it is looking for the base class?
Explain rtti.
Is c++ a low level language?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
How do I use turbo c++?
When do you call copy constructors?
Why should you learn c++?
What is a dangling pointer in c++?
What is prototype for that c string function?
How long will it take to learn programming?
What is the purpose of templates in c++?
What is a class definition?
What is a .h file c++?