Difference between While and Do While loop
Answers
Answered by
34
Answer:
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.
Hope this helps u.../
Answered by
2
Answer:
While loop is executed only when given condition is true. Whereas, do-while loop is executed for first time irrespective of the condition. After executing while loop for first time, then condition is checked.
I hope it's useful for you....
plz mark me as Brainliest......
Similar questions