1. Introduction & Setup
Understand what C is, install a C compiler (like GCC), and write your first “Hello, World!” program.
2. Variables, Data Types & Operators
Learn about integers, floats, characters, and how to use arithmetic and logical operators.
3. Control Statements
Master if-else, switch, and loops (for, while, do-while) to control program flow.
4. Functions & Scope
Create functions to organize code, and understand local/global variables and return types.
5. Arrays, Strings & Pointers
Work with arrays, handle strings, and understand the basics of pointers and memory referencing.
6. Structures, File Handling & Mini Project
Use structures to group data, read/write files, and complete a small project like a student record system.
