my CVI is CVI2013.
in a function called Send(),which is defined myself,i used goto
to jump out of switch inside of for .which is showed below:
int Send()
{
for(...) //the first for
{
if()//the first if
{
for()//the second for
{
switch()
{
case 1:
goto Label1;
}//end of switch
}//end of the second for
}//end of the first if
Label1: continue;
}//end of the first for
}
when i compiled it ,it showes:
" 485, 49 error: use of undeclared label 'Label1'",
"624, 1 error: use of undeclared identifier 'Label1'"
why?