Computer Science, asked by dhineshkannas4, 9 days ago

what is an example of iteration in c for while do-while



Answers

Answered by jyotigupta64
0

Explanation:

How while loop works?

The while loop evaluates the testExpression inside the parentheses ().

If testExpression is true, statements inside the body of while loop are executed. Then, testExpression is evaluated again.

The process goes on until testExpression is evaluated to false.

If testExpression is false, the loop terminates (ends).

Similar questions