This project contains a C program that prints a custom star (*) pattern
using nested loops and conditional statements.
The program demonstrates how loop control and logical conditions can be combined to create structured patterns in the terminal.
- Uses
forloops to control rows and columns - Uses conditional statements to decide where to print
*or spaces - Prints a symmetric and structured star pattern
- Useful for understanding pattern logic in C programming
gcc pattern.c -o pattern
./pattern