syntax of do while loop in c++
Answers
Answered by
0
Answer:
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 execute 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 execute again.
Answered by
0
surayra4yau5a5uw5uw5
Similar questions