- Loop is used to execute the block of code several times according to the condition given in the loop.
 - It means it executes the same code multiple times so it saves code and also helps to traverse the elements of an array.
 
Shathana. S.R. Answered question May 27, 2023
				Loops in C programming language are a conditional concept used to execute a line or block of code consecutively. In C programming, there are three loops: For Loop, While Loop, and Do While Loop.
Monisha M Answered question May 26, 2023
				Loop is used to execute the block of code several times according to the condition given in the loop. It means it executes the same code multiple times so it saves code and also helps to traverse the elements of an array.
Monisha M Answered question May 26, 2023
				