991019-1.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 29 行
C
29 行
typedef struct { double epsilon;} material_type;material_type foo(double x){ material_type m; m.epsilon = 1.0 + x; return m;}main(){ int i; material_type x; /* We must iterate enough times to overflow the FP stack on the x86. */ for (i = 0; i < 10; i++) { x = foo (1.0); if (x.epsilon != 1.0 + 1.0) abort (); } exit (0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?