Hi all,
when I use break statement like following it doesn't show any error
String o="":
o = o + 2;
z:
for(int x = 3; x < 8; x++) {
if(x==4) break;
if(x==6) break z;
o = o + x;
but when I interchange the label(z) position
z:
o = o + 2;
for(int x = 3; x < 8; x++)
I am getting label missing error
can anyone help me
thanks in advance