paste11.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 16 行
C
16 行
/* Copyright (C) 2000 Free Software Foundation, Inc. *//* { dg-do preprocess } *//* Test correct pasting of identifiers and numbers. We can paste any number, as long as no '.', '-' or '+' appears in its spelling. */#define glue(x, y) x ## yglue (ident, 12) /* OK. */glue (ident, 12e3) /* OK. */glue (ident, 12e+3) /* { dg-warning "valid preprocessing tok" } */glue (ident, 12e-3) /* { dg-warning "valid preprocessing tok" } */glue (ident, 1.2) /* { dg-warning "valid preprocessing tok" } */glue (ident, .12) /* { dg-warning "valid preprocessing tok" } */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?