wtr-suffix-1.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 36 行
C
36 行
/* Test for -Wtraditional warnings on integer constant suffixes. Note, gcc should omit these warnings in system header files. Origin: Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 8/24/2000. *//* { dg-do compile } *//* { dg-options "-Wtraditional" } */voidtestfunc (){ int i; double f; i = 1L; i = 1l; i = 1U; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ i = 1u; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ f = 1.0; f = 1.0F; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ f = 1.0f; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ f = 1.0L; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ f = 1.0l; /* { dg-warning "traditional C rejects" "numeric constant suffix" } */ # 24 "sys-header.h" 3/* We are in system headers now, no -Wtraditional warnings should issue. */ i = 1L; i = 1l; i = 1U; i = 1u; f = 1.0; f = 1.0F; f = 1.0f; f = 1.0L; f = 1.0l;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?