Module 1: Introduction to C
This first chapter will cover assignment statements, arithmetic statements, loop statements, conditional statements, and other fundamental rules for writing code in C.
Overview of C
INTRODUCTION TO C LANGUAGE C is a general-purpose programming language that is closely related to...
Operator & If-Else Statement
1. Arithmetic Operators a) Addition (+) Adds two values. int a = 5, b = 3; int result = a + b; //...
Loop & Switch-Case
Loop & Switch-Case 1. While Loop A while loop is a function used to execute the same block of cod...
Nested Statements / Loops
1. NESTED IF STATEMENT A nested if statement is an if condition inside another if block. This all...