Friday, July 1, 2016

C Program to Print inverted Number Pattern



C Program to Print inverted Number Pattern as given below:
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 of program

5 4 3 2 1
5 4 3 2
5 4 3
5 4
5


No comments:

Post a Comment