0
What is difference between while loop and do while loop.?
In terms of loops
1 Resposta
0
while loops run while the conditions are met, do while runs at least once even though conditions are NOT met. while runs the test immediately and do while first runs the code once and then tests the conditions.