do keyword in Java

The ” do ” keyword specifies a loop whose condition is checked at the end of each iteration. Syntax is as below do  {         <statements>  } while (boolean_condition); do { <statements> } while (boolean_condition); The do-while is a loop structure which repeatedly executes the statements until a condition becomes false. In […]

Share this article on