scalar-by-value-6_main.c
来自「用于进行gcc测试」· C语言 代码 · 共 20 行
C
20 行
/* Test that function args can be passed in various positions to both fixed and variable arg functions. *//* { dg-options "-O" } *//* { dg-options "-O -mlong-double-128" { target powerpc*-*-* } } */extern void exit (int);extern void longdouble_i_doit (void);extern void longdouble_d_doit (void);extern void complexlongdouble_i_doit (void);extern void complexlongdouble_d_doit (void);int main (void){ longdouble_i_doit (); longdouble_d_doit (); complexlongdouble_i_doit (); complexlongdouble_d_doit (); exit (0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?