⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ext1.c

📁 linux下编程用 编译软件
💻 C
字号:
// { dg-do run  }// { dg-options "" }// Copyright (C) 1999 Free Software Foundation// by Alexandre Oliva <oliva@dcc.unicamp.br>// simplified from bug report by Michael Rosenbruch <Rosenbruch@bfw-online.de>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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -