C语言之GoTo语句
#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;
}
#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;
}