|
Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop.
In Loop,when Break statement occurs then control breaks the loop & comes outside of loop and when continue statement occurs then control skips further statements and goes for next itteration. Answered by: nvreddy
|