在goto语句的后面,如果出现#define M 5
goto lable;
int a[M];
.......
.......
lable:
printf("error\n");
这时候会出现如题错误;查证之后,好像是因为内存的原因,具体如何待有时间再做研究。可以这样修改‘
goto lable;
{
int a[M];
.......
.......
}
lable:
printf("error\n");
先做个记录
来源:CSDN
作者:bore2015
链接:https://blog.csdn.net/bore2015/article/details/49701251