C Program to Print inverted Number pyramid Pattern.
For N=5,
5 4 3 2 1
5 4 3 2
5 4 3
5 4
5
- include<stdio.h>
- int main()
- {
- int i, j, n=5;
- for(i=0; i<5; i++)
- {
- for(j=5; j>i; j--)
- {
- printf("%d ",j);
- }
- printf("\n");
- }
- return 0;
- }
Output
5 4 3 2 1
5 4 3 2
5 4 3
5 4
5
Comments