Break/Continue a (nested) outer for loop
If I have 2 nested for-loops, how can I break/continue the outer loop?example:for (i=0, i<10, i++, for (j=0, j<10, j++, // Do stuff if ( <condition>, // Continue with the next i ); // end if ); // end inner loop // Do some more stuff); // end outer loop