comp-goto-2.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 37 行

C
37
字号
/* A slight variation of 920501-7.c.  */#ifdef STACK_SIZE#define DEPTH ((STACK_SIZE) / 512 + 1)#else#define DEPTH 1000#endif#if ! defined (NO_LABEL_VALUES) && !defined (NO_TRAMPOLINES)x(a){  __label__ xlab;  void y(a)    {      void *x = &&llab;      if (a==-1)	goto *x;      if (a==0)	goto xlab;    llab:      y (a-1);    }  y (a); xlab:;  return a;}#endifmain (){#if ! defined (NO_LABEL_VALUES) && !defined (NO_TRAMPOLINES)  if (x (DEPTH) != DEPTH)    abort ();#endif  exit (0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?