do-while loop
do {
workHard();
} while (!dreamsAchieved);
do-while loop verifies the condition after the execution of the statements inside the loop
Comments
do {
workHard();
} while (!dreamsAchieved);
do-while loop verifies the condition after the execution of the statements inside the loop