Computer Science, asked by shahaankhalid111, 3 months ago

What are looping statement ? name its various types​

Answers

Answered by anshikasingh0010
0

Answer:

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. For and while loop is entry-controlled loops

Explanation:

hope it helps

Answered by ashokmohantytsal37
0

Answer:

In computer science, a loop is a programming structure that repeats a sequence of instructions until a specific condition is met. Programmers use loops to cycle through values, add sums of numbers, repeat functions, and many other things. ... Two of the most common types of loops are the while loop and the for loop.

Similar questions