0
do...while loop
It is said that the do...while loop is guaranteed to execute at least one time.What if condition is false??
2 Respuestas
+ 13
It executes first time, and then looks at the condition. So condition checking is done after first execution
0
it is exit check loop it checkS condition after inside stetements