1.

What Does Break And Continue Statements Do?

Answer»

Continue statement CONTINUES the current loop (if label not SPECIFIED) in a NEW iteration WHEREAS BREAK statement exits the current loop.

 

Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop.

 



Discussion

No Comment Found