what is do while loop
Answers
Answered by
1
Answer:
Do while loop is an exit controlled loop which brings the execution of the program in the loop atleast once even if the condition is false.
The block of statements in the loop will be executed atleast once irrespective of its satisfying the condition.
The syntax of do while loop is:
do{
block of statements
}while(condition)
If this answer is helpful, please mark it the brainliest:)
Explanation:
Similar questions