📄 paste11.c
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -