Hello group.
Are there any efficient way to double 'break' a 2-dimensional loop
without using a jump, an extra variable or midifying i and j?
e.g.
for(i = 0; i < x; i++)
for(j = 0; j < y; j++){
z;
break(2); /* i know the 2 does not help */
}
Are there any efficient way to double 'break' a 2-dimensional loop
without using a jump, an extra variable or midifying i and j?
e.g.
for(i = 0; i < x; i++)
for(j = 0; j < y; j++){
z;
break(2); /* i know the 2 does not help */
}
Comment