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
What is unary operator?
Linked lists -- can you tell me how to check whether a linked list is circular?
What is pass by value in c?
What are the types of pointers?
Explain what is the concatenation operator?
What is an identifier?
What is %s and %d in c?
write a progrmm in c language take user interface generate table using for loop?
Are negative numbers true in c?
How to Throw some light on the splay trees?
Why main function is special give two reasons?
What is adt in c programming?
What is the c value paradox and how is it explained?
What is difference between class and structure?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix