Advertisements
Advertisements
प्रश्न
What action will you take to terminate an outer loop from the block of an inner loop?
संक्षेप में उत्तर
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.1: Nested Loop - EXERCISES [पृष्ठ १४५]