Compiling...
A Loop is a control structure that repeats a block of code as long as a specified test condition evaluates to True. Each repetition of the loop is called an Iteration.
Every loop in C requires three essential components:
Initialization: Setting the starting value of a loop counter variable.
Condition / Test: The boolean expression checked before or after each repetition.
Update (Increment/Decrement): Modifying the counter so the loop eventually terminates.