19921210-1.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 14 行
C
14 行
/* Test for proper disabling of macros within their own expansions. *//* { dg-do compile } *//* The following is a trick to evaluate a complex boolean expression at compile time, inspired by autoconf 2.13's sizeof-detection. */enum { a = 4, f = 3 };#define a1(y) (y+2)#define a2(y) a1(y)+1#define f a+fchar array[(a2(f)) == 10 ? 1 : -1];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?