Explain looping in c with statements ?
Answers
Answered by
4
Looping is one of the key concepts on any programming language. A block of looping statements in C are executed for number of times until the condition becomes false. Loops are of 2 types: entry-controlled and exit-controlled. 'C' programming provides us 1) while 2) do-while and 3) for loop.
Answered by
1
Answer:
Hi ! Let me help u with the answer.
Explanation:
A Loop executes the sequence of statements many times until the stated condition becomes false. A loop consists of two parts, a body of a loop and a control statement. The control statement is a combination of some conditions that direct the body of the loop to execute until the specified condition becomes false.
I hope this answer helps you !!!
Similar questions