Answer Posted / malik
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
for(i=5;i>=0;i--)
{
for(j=1;j<=i;j++)
{
printf("%d", j);
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Hai what is the different types of versions and their differences
can we have joblib in a proc ?
what are bit fields? What is the use of bit fields in a structure declaration?
Describe how arrays can be passed to a user defined function
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is n in c?
How can you determine the size of an allocated portion of memory?
What is array within structure?
What is wrong with this code?
What is structure of c program?
What oops means?
Difference between goto, long jmp() and setjmp()?
Can you please explain the difference between exit() and _exit() function?
Why we write conio h in c?
When should the register modifier be used? Does it really help?