namedret3.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 31 行
C
31 行
// Special g++ Options: -Wno-deprecatedextern "C" void abort();int f2(int *x){ *x = 1; return 2;}int f1() return x{ f2(&x);}void g(){ int scratch[100]; int i; for (i = 0; i < 100; ++i) scratch[i] = 0;}int main(){ g(); if (f1() != 1) abort (); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?