Number Pattern 17-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.
11111 2222 333 22 1
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++) { for(j=no_rows;j>=i;j--) { if(i<=3) printf("%d",i); else printf("%d",6-i); } printf("n"); } getch(); return 0; }