paste4.c
来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 17 行
C
17 行
/* Copyright (C) 2000 Free Software Foundation, Inc. *//* { dg-do compile } *//* { dg-options -save-temps } *//* Since 1.0e and + form the pasted token, 1 is a separate token and so should be output with a preceding space. The old preprocessor gets this wrong. We use -save-temps to avoid direct use of the integrated preprocessor. */#define glue(x, y) x ## yint main (){ double d = glue (1.0e, +1); /* { dg-error "exponent|(parse|syntax) error" } */ return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?