Session 1
Hello World & C Basics
Your first steps into the world of C programming. Learn the fundamentals and write your first program!
Key Topics:
- What is C programming?
- Setting up your environment
- Your first "Hello World" program
- Understanding program structure
Session 2
printf() & scanf()
Learn how to display output and get input from users. Essential functions for interactive programs.
Key Topics:
- printf() function
- scanf() function
- Format specifiers
- User input handling
Session 3
Variables & Data Types
Understand how to store and work with different types of data in your programs.
Key Topics:
- int, float, char data types
- Variable declaration
- Memory concepts
- Type conversion
Session 4
Arithmetic Operations
Master mathematical operations and learn how to perform calculations in C.
Key Topics:
- Basic arithmetic operators
- Order of operations (PEMDAS)
- Modulo operator (%)
- Mathematical expressions
Session 5
Math Magic & Calculations
Advanced mathematical concepts and building practical calculators.
Key Topics:
- Advanced calculations
- Building calculators
- Mathematical functions
- Problem solving
Session 6
Arithmetic Operations & Math Magic
Comprehensive arithmetic operations, order of operations, and building a super calculator.
Key Topics:
- All arithmetic operators (+, -, *, /, %)
- PEMDAS order of operations
- Data type mixing in calculations
- Super calculator project
Session 7
Decision Making - Basic Conditionals
Learn to make decisions in your programs using if statements and comparison operators.
Key Topics:
- if statements
- Comparison operators (==, !=, >, <, >=, <=)
- Boolean logic
- Interactive programs