Number Pattern 43 – Pyramid pattern in C programming
Number Pattern 43-Pyramid pattern in C programming In this program, we will see the Pyramid pattern numbers in C programming language. Please look into the program. 1 01 101 0101 The C program for Pyramid pattern is as follows: #include <stdio.h> int main() { int a, b, no_rows; printf(“Enter number of rows – “); scanf(“%d”,&no_rows); … Read more