Number Pattern 60 – Rhombus pattern in C programming

Number Pattern 60-Rhombus pattern in C programming In this program, we will see the Rhombus pattern numbers in C programming language. Please look into the program. 1 2 2 3 3 4 4 3 3 2 2 1 The C program for Pyramid pattern is as follows: #include <stdio.h> int main() { int a,b,c; for(a=1;a<=4;a++) … Read more

Star Pattern 8 – Hallow rhombus pattern using stars in C programming

Star Pattern 8-Hallow rhombus pattern using stars in C programming In this program, we will see the Hallow rhombus pattern using stars in C programming language. Please look into the program. ********** **** **** *** *** ** ** * * ** ** *** *** **** **** ********** The C program for Cross pattern is as … Read more