20010518-2.c

来自「用于进行gcc测试」· C语言 代码 · 共 21 行

C
21
字号
/* { 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 + =
减小字号Ctrl + -
显示快捷键?