eh46.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 48 行
C
48 行
// Build don't link:// Special g++ Options: -fexceptions// excess errors test - XFAIL a29k-*-* arm-*-peint atoi(const char *);struct ios { virtual ~ios();}; class fstreambase : virtual public ios {};class ifstream : public fstreambase {};class ofstream : public fstreambase {};extern const short O;extern const short D;const short O= 0;const short D= -3;short glc(const char* const * const l, short& n,short& x,short& y, ifstream* i,ofstream* o){ n=atoi(l[1]); x=atoi(l[2]); y=atoi(l[3]); if((x < 0)||(y <0)) { return D; } i = new ifstream[n]; o = new ofstream[2]; return O;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?