次のコードで未定義のラベルエラーが発生するのはなぜですか?? コードは役に立たないので無視しています...
loopLabel:
for(i=0;;i++)
{
{ some code;
}
{ come code;
}
}
if(condition)
{
if(condition)
{ some code }
else
{
some code;
continue loopLabel;
}
}