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

📄 20000801-4.c

📁 this is a gcc file, you can download it and learn its usetility, for further detail please look at t
💻 C
字号:
/* Origin: PR c/128 from Martin Sebor <sebor@roguewave.com>, adapted   as a testcase by Joseph Myers <jsm28@cam.ac.uk>.*//* Character arrays initialized by a string literal must have   uninitialized elements zeroed.  This isn't clear in the 1990   standard, but was fixed in TC2 and C99; see DRs #060, #092.*/extern void abort (void);intfoo (void){  char s[2] = "";  return 0 == s[1];}char *t;intmain (void){  {    char s[] = "x";    t = s;  }  if (foo ())    exit (0);  else    abort ();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -