Continue statement

if there is nested loop and continue statement is in inner most loop so where will the control go on execution of continue statement ??

@anujsharmabadboy if there is a continue statement in the any loop, the rest of the statements of that loop will be skipped and the flow of control will move to the next iteration of that loop only. If you want to break out of that inner loop and go to the next iteration of the outer loop, you need to use the break statement.