Computer Science, asked by gagandeepsingh37, 2 months ago

Write the syntax of DO UNTIL loop.​

Answers

Answered by YuJin5698
1

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 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.

Explanation:

hope this helps you dear

Answered by mamtasingh268500
2

hii friend

In the first syntax "Do Until" loop checks the condition first and gets the condition result TRUE or FALSE.

hope it's helpful

Similar questions