📄 woverlength-strings-pedantic-c89.c
字号:
/* -Woverlength-strings complains about string constants which are too long for the C standard's "minimum maximum" limits. It is off by default, but implied by -pedantic. *//* { dg-options "-std=c89 -pedantic" } */#define TEN "xxxxxxxxxx"#define HUN TEN TEN TEN TEN TEN TEN TEN TEN TEN TEN#define THO HUN HUN HUN HUN HUN HUN HUN HUN HUN HUN/* C89's minimum-maximum is 509. */const char x510[] = HUN HUN HUN HUN HUN TEN; /* { dg-warning "greater than" } *//* C99's minimum-maximum is 4095. */const char x4096[] = THO THO THO THO /* 4000 */ TEN TEN TEN TEN TEN /* 4050 */ TEN TEN TEN TEN /* 4090 */ "123456"; /* { dg-warning "greater than" } */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -