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