#include <stdio.h>#include <stdlib.h>
int main(){ int x = 10; goto END; x == 20;END: printf("x的值是:%d \n", x); system("pause"); return 0;}
C语言之GoTo语句
原文:https://www.cnblogs.com/WangxinCode/p/14109056.html