Number Pattern 40-Pyramid pattern in C programming
Contents
hide
In this program, we will see the Pyramid pattern numbers in C programming language. Please look into the program.
1 123 12345 1234567
The C program for Pyramid pattern is as follows:
#include<stdio.h> void main() { int a,b,no_rows; printf("Enter number of rows - "); scanf("%d",&no_rows); for(a=1;a<=7;a+=2) { for(b=1;b<=a;b++) { printf("%d",b); } printf("n"); } getch(); return 0; }