This repository contains my C language practice programs — organized topic-wise to help understand the fundamentals of programming.
It includes everything from basic syntax and input/output to loops, conditions, and pattern printing.
Perfect for beginners who want to revise or learn C step-by-step. 🚀
| Folder | Description |
|---|---|
| 🧾 Basics | Programs covering syntax, variables, and input/output and some basic ques. |
| 🔀 Conditional Statements | if, if-else, nested if, and switch examples |
| 🔁 Loops | Programs using for, while loops |
| 🟩 Pattern | Star and number pattern programs (Square & Triangle) |
- Introduction to C
- Data Types & Variables
- Operators
- Conditional Statements
- Loops
- Pattern Printing
To compile and run any program using GCC:
gcc filename.c -o output
./outputExample:
gcc Basics/hello.c -o hello
./hello