Given:
What is the output?
continue x transfers control to the next iteration of the labeled outer for loop, bypassing the remainder of the inner loop and its update expression. The additions and applicable inner-loop decrements leave c equal to 3. When a is 1, break exits the inner loop before any further addition occurs.
continue x
for
c
3
a
1
break
Community Discussion