Loops are an important part of programming. In C, there are two types of loops – while and do-while. Both have their own advantages and disadvantages. This article will discuss the differences between them and when to use each type. It will also provide examples for better understanding.
About Difference Between While And Do While Loop In C
Loop | Difference |
---|---|
While | Checks the condition before entering the loop. |
Do-While | Executes the code at least once, then checks the condition. |
While | May not execute even once if the condition is false initially. |
Do-While | Will always execute at least once. |
While | The body of the loop will be executed until the condition becomes false. |
Do-While | The body of the loop will be executed as long as the condition remains true. |
— by
Leave a Reply