Wednesday, February 27, 2013

What is the advantage of 'do-while' loop as compared to 'while' loop?

A while loop checks the condition first before executing the content whereas do-while loop executes the content of the loop before checking the condition and makes obligatory to enter the loop at least once.

No comments :