which loop is also known as definite loop
Answers
Answer:
The DO loops are called definite loops .
Answer:
While DO loops are called definite loops
Explanation:
Unlike for and even as loops, which check the loop situation on the pinnacle of the loop, the do...even as loop in C programming assessments its situation at the lowest of the loop.
A do...even as loop is just like some time loop, besides the truth that it's far assured to execute at the least one time.
Syntax
The syntax of a do...even as loop in C programming language is −
do even as( situation );
Notice that the conditional expression seems on the quit of the loop, so the statement(s) withinside the loop executes as soon as earlier than the situation is tested.
If the situation is true, the go with the drift of manipulate jumps again as much as do, and the statement(s) withinside the loop executes again. This procedure repeats till the given situation turns into false.
#SPJ3