ext1.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 20 行
C
20 行
// Copyright (C) 1999 Free Software Foundation// by Alexandre Oliva <oliva@dcc.unicamp.br>// simplified from bug report by Michael Rosenbruch <Rosenbruch@bfw-online.de>// Special g++ Options: // execution test - XFAIL *-*-*extern "C" void abort();int main () { char x[1]; char *y = x ? /* implicit x */ : 0; /* For some reason, the array x is copied twice, and y points to the second copy (the first is never used). If x is explicit, no copy is created, and the program succeeds. */ if (x != y) abort();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?