LOOP iteration or repetition) controls

loops cause program to execute the certain block of code repeatedly until test condition is false. They use while we have to perform some repetitive task in programing, actually loop depends on a condition till the condition remain true loop will execute it’s statements.when condition become false loop will terminate.

WE HAVE 3 LOOP IN C

1.while 2.do-while 3.for

we will study all of these one by one.