paste.c
来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· C语言 代码 · 共 17 行
C
17 行
/* Test for proper comment elimination semantics from cpplib's -traditional. This should compile and link with compiled with `gcc -traditional-cpp'. Test case by Jason R. Thorpe <thorpej@zembu.com>. *//* { dg-do compile } */#define A(name) X/**/name#define B(name) \void A(Y/**/name)() { A(name)(); }void Xhello() { printf("hello world\n"); }B(hello)int main() { XYhello(); return (0); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?