Computer Science, asked by jashanSran06, 5 hours ago

Which statements provide a way to repeat commands?​

Answers

Answered by zia94252701
9

Answer:

Yes, loop statement provide a way to repeat certain commands/ instruction. For given index variable ,control enters the loop and execute sequence of instruction. While loop executes the block of statements if given condition met.

Answered by stusrivattsan9868
2

Loops provide a way to repeat commands and control how many times they are repeated. C provides a number of looping way. while loop. The most basic loop in C is the while loop.A while statement is like a repeating if statement. Like an If statement, if the test condition is true: the statments get executed.

Similar questions