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 formal argument?
What are categories used for in c?
What is difference between structure and union with example?
Does sprintf put null character?
What is extern storage class in c?
Why double pointer is used in c?
What is 'bus error'?
Why do we use return in c?
code for quick sort?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
How can variables be characterized?
What is the use of ?: Operator?
How to delete a node from linked list w/o using collectons?
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