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

📄 macro5.c

📁 linux下编程用 编译软件
💻 C
字号:
/* { dg-do preprocess } *//* Test source Robert Lipe, with minor modifications for the testsuite   by Neil Booth.  29 Oct 2000.  */#define _VA_ARGS_0() 42#define _L_0()                      (#define _R_0()                      )#define __VA_ARGLIST(argc,list) \                _VA_ARGS_##argc list#define _CAT_LIST(argc,list1,list2) \                _L_##argc list1 _R_##argc list2#define _VA_ARGLIST(argc,list1,list2) \                __VA_ARGLIST(argc, \                        _CAT_LIST(argc, list1, list2))#define BLAH(a) _VA_ARGLIST(a, (), ())#if BLAH (0) != 42#error Simulated varargs macros#endif

⌨️ 快捷键说明

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