980312-1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 25 行

C
25
字号
/* { dg-do link { target i?86-*-* } } *//* { dg-options "-O2 -march=pentiumpro" } */extern __inline  double__expm1 (double __x){  double __temp;  __temp = 1.0;  return __temp;}extern __inline  double__sgn1 (double __x){  return __x >= 0.0 ? 1.0 : -1.0;}doubletanh (double __x){  return  __expm1 (__x) * __sgn1 (-__x);}main (){  return tanh (3.45) != 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?