Number Pattern 42 – Pyramid pattern in C programming
Number Pattern 42-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 2 4 1 3 5 2 4 6 8 1 3 5 7 9 The C program for Pyramid pattern is as follows: #include<stdio.h> int main() { int … Read more