Advertisements
Advertisements
Question
What action will you take to terminate an outer loop from the block of an inner loop?
Answer in Brief
Solution
Use the break statement and label to terminate the outer loop from the inner loop block. In the example below, the outer loop ends when the inner loop variable j equals 2.
Example:
int i, j;
outer:
for (int i = 1; i <= 5; i++)
{for (7 = 1; j <= 3; j++)
{ if(j == 2)
break outer;
}}
Example:
int i, j;
shaalaa.com
Is there an error in this question or solution?
Chapter 1.1: Nested Loop - EXERCISES [Page 145]