Computer Science, asked by parthkhatri0987, 1 month ago

Give and Explain syntax of while loop. Draw flowchart of it​

Answers

Answered by ashlin05
4

Syntax. do { statement(s); } while( condition ); Notice that the conditional expression appears at the end of the loop, so the statement(s) in the loop executes once before the condition is tested. If the condition is true, the flow of control jumps back up to do, and the statement(s) in the loop executes again.

Similar questions
Math, 7 months ago