Breaking Nested Loops in C
It is sometimes required to break from the inner loop of nested loops. In this a break statement can be used. However, the break statement will only exit from the nested inner loop in which it is encountered and control will be transferred to outer loop. In case we want to transfer control to some … Read more