Number Pattern 49 – Pyramid pattern in C programming
Number Pattern 49-Pyramid pattern in C programming In this program, we will see the Pyramid pattern numbers in C programming language. Please look into the program. 5 45 345 2345 12345 The C program for Pyramid pattern is as follows: #include <stdio.h> int main() { int a, b, no_rows; printf(“Enter number of rows – “); … Read more