write down various loops used in programming language
Answers
Answered by
2
Answer:
Programmers use loops to cycle through values, add sums of numbers, repeat functions, and many other things. Loops are supported by all modern programming languages, though their implementations and syntax may differ. Two of the most common types of loops are the while loop and the for loop.
Answered by
1
Answer:
Looping is one of the key concepts on any programming language. It executes a block of statements 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.
Similar questions