Computer Science, asked by yash11113, 10 months ago

Labelled continue statement allows the next iteration of the loop from any place of looping structure.
False why?

Answers

Answered by SrivastavaSaksham
0

Answer:

Simple Question

Explanation:

Without label , the CONTINUE statement transfers control to the next iteration of the current loop. With label , the CONTINUE statement transfers control to the next iteration of the loop that label identifies. Without this clause, the CONTINUE statement exits the current iteration of the loop unconditionally.

Similar questions