20040805-1.c
来自「用于进行gcc测试」· C语言 代码 · 共 32 行
C
32 行
#if __INT_MAX__ < 32768 || (defined(STACK_SIZE) && STACK_SIZE < 0x12000)int main () { exit (0); }#elseint a[2] = { 2, 3 };static int __attribute__((noinline))bar (int x, void *b){ a[0]++; return x;}static int __attribute__((noinline))foo (int x){ char buf[0x10000]; int y = a[0]; a[1] = y; x = bar (x, buf); y = bar (y, buf); return x + y;}intmain (){ if (foo (100) != 102) abort (); exit (0);}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?