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

📄 20010518-2.c

📁 linux下编程用 编译软件
💻 C
字号:
/* { dg-do compile } *//* This test fails on HC11/HC12 when it is compiled without -mshort because    the array is too large (INT_MAX/2 > 64K).  Force to use 16-bit ints   for it.  *//* { dg-options "-w -mshort" { target m6811-*-* m6812-*-* } } *//* Large static storage.  */#include <limits.h>static volatile char chars_1[INT_MAX / 2];static volatile char chars_2[1];intfoo (void){  chars_1[10] = 'y';  chars_2[0] = 'x';}

⌨️ 快捷键说明

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