Number Pattern 16 – Inverted pyramid pattern of numbers in C programming

Spread the love

Number Pattern 16-Inverted pyramid pattern of numbers in C programming

Inverted pyramid pattern of numbers in C programming

In this program, we will see the inverted pyramid pattern or triangle of numbers in C programming language. Please look into the program.

13579
3579
579
79
9

The C program for Inverted pyramid pattern of numbers is as follows:

#include <stdio.h>
int main()
{
 int i, j, no_rows;
 printf("Enter number of rows - "); 
 scanf("%d",&no_rows);
 
 for(i=1;i<=no_rows;i+=2)
 {
  for(j=i;j<=no_rows;j+=2)
  {
    printf("%d",j);
  }
  printf("n");
 }
 getch();
 return 0;
}

Number Series Programs in C programmming

Star Pattern Programs in C programmming

Number Pattern Programs in C programmming

Alphabet Pattern Programs in C programmming


Spread the love

Leave a Comment