Program 304: Program to Display Reverse Number X Pattern
 
//Coming Soon...
Output:
#include<stdio.h>
main()
{
 int len,i,j,rows;
 printf("Enter number of rows\n");
 scanf("%d",&rows);
 for(i=rows;i>=0;i--)
 {
  for(j=0;j<rows;j++)
  {
   if(i==j || i+j==rows-1)
   {
    printf("%d",i+1);
   }
   else{
    printf(" ");
   }
  }
  printf("\n");
 }
}
Explanation:Output:
 


