Introduction to C Programming Course Schedule_ Batch 02 - Google Sheets
Introduction to C Programming Course Schedule_ Batch 02 - Google Sheets
Programming
Week Date Module
No
Mar 03, 2025 Module 01: Introduction to C Programming
● What is Structured Programming language?
● Features and Use of C
● Compilation Process
Week 01 ● Preprocessor
● Environment Setup and Write First Program Learn the structure of a C
program (headers, main function, return type).
Basics of Variables
● What are Variables?
o Definition and purpose.
o Rules for naming variables (identifiers).
o Declaration and initialization.
Scope and Lifetime of Variables
● Local variables.
● Global variables.
● Static variables.
● Register variables.
o Types of loops in C.
for Loop
o Syntax and flowchart.
o Basic example: Printing numbers 1 to 10.
o Initialization, condition, and increment/decrement.
while Loop
do-while Loop
Intermediate Topics
Nested Loops
Infinite Loops