Algorithm Programming
Module 1: Introduction to C
This first chapter will cover assignment statements, arithmetic statements, loop statements, cond...
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...
Module 2: Function and Array
Function
In C programming, a function is a block of statements that performs a specific task when called. ...
Arrays in C
In C programming, an array is a collection of elements of the same data type stored in contiguou...
Pass by Value vs Pass by Reference
In C programming, functions can receive arguments through two primary methods: Pass by Value and ...