Difference between while and do-while loop in C, C++, Java Last Updated : 17 Jul, 2024 Comments Improve Suggest changes Like Article Like Report while loop: A while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement. Syntax :while (boolean condition){ loop statements...}Flowchart:Example: C++ #include <iostream> using namespace std; int main() { int i = 5; while (i < 10) { i++; cout << "GFG\n"; } return 0; } C #include <stdio.h> int main() { int i = 5; while (i < 10) { printf("GFG\n"); i++; } return 0; } Java import java.io.*; class GFG { public static void main(String[] args) { int i = 5; while (i < 10) { i++; System.out.println("GfG"); } } } OutputGFG GFG GFG GFG GFG do-while loop: do while loop is similar to while loop with the only difference that it checks for the condition after executing the statements, and therefore is an example of Exit Control Loop.Syntax:do{ statements..}while (condition);Flowchart:Example: C++ #include <iostream> using namespace std; int main() { int i = 5; do { i++; cout << "GFG\n"; } while (i < 10); return 0; } C #include <stdio.h> int main() { int i = 5; do { printf("GFG\n"); i++; } while (i < 10); return 0; } Java import java.io.*; class GFG { public static void main(String[] args) { int i = 5; do { i++; System.out.println("GfG"); } while (i < 10); } } OutputGFG GFG GFG GFG GFG Here is the difference table:whiledo-whileCondition is checked first then statement(s) is executed.Statement(s) is executed atleast once, thereafter condition is checked.It might occur statement(s) is executed zero times, If condition is false.At least once the statement(s) is executed.No semicolon at the end of while. while(condition)Semicolon at the end of while. while(condition);Variable in condition is initialized before the execution of loop.variable may be initialized before or within the loop.while loop is entry controlled loop.do-while loop is exit controlled loop.while(condition) { statement(s); }do { statement(s); } while(condition); Comment More info P pp_pankaj Follow Improve Article Tags : Java Loops & Control Structure Explore Java BasicsIntroduction to Java4 min readJava Programming Basics9 min readJava Methods7 min readAccess Modifiers in Java5 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java7 min readOOP & InterfacesClasses and Objects in Java10 min readAccess Modifiers in Java5 min readJava Constructors10 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface11 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java6 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling8 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking15+ min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz | Level Up Your Java Skills1 min readTop 50 Java Project Ideas For Beginners and Advanced [Update 2025]15+ min read Like