C Program to Print Square Star Pattern

In this tutorial, i am going to show you how to print square star pattern using for loop in c program. C Program to Print Square Star Pattern /* C program to Print Square Star Pattern */ #include<stdio.h> int main() { int i, j, Side; printf(“Please Enter Any Side of a Square :- “); scanf(“%d”, … Read more

C Program to Print Rhombus Star Pattern

In this tutorial, i am going to show you how to rhombus star pattern with the help of for loop and while loop in c programs. All C Programs to Print Rhombus Star Pattern C Program to Print Rhombus Star Pattern using For Loop #include<stdio.h> int main() { int i, j, k, rows; printf(“Enter Rhombus … Read more