Loops:
In real life, there are situations when there
is need to perform a set of task repeatedly till some condition is met.
Such as
– sending email to all employees, deleting all files, printing 1000 pages of a
document.
All of these tasks are performed in loop.
There are three kind of looping in C Language:
a. while Loop,
b. do while loop,
c. for Loop.