why i am getting Undefinedlabel error in java?
Posted
by rohit
on Stack Overflow
See other posts from Stack Overflow
or by rohit
Published on 2010-04-23T14:08:40Z
Indexed on
2010/04/23
14:13 UTC
Read the original article
Hit count: 189
hi,
why i am getting undefined label error in following code?? i am ignoring code as it is of no use...
loopLabel:
for(i=0;;i++)
{
{ some code;
}
{ come code;
}
}
if(condition)
{
if(condition)
{ some code }
else
{
some code;
continue loopLabel;
}
}
© Stack Overflow or respective owner