bccbug.c

来自「numerical recipes in C source codes」· C语言 代码 · 共 11 行

C
11
字号
/* The following function is recommended by Borland Technical Support to
   "fix" the error "Floating Point Formats Not Linked".  To use this file,
   compile it along with your own files on the compiler command line. You
   do not need to call it, just compile it along with your files.         */

void LinkFloat(void)
{
  float a=0, *b=&a;
  a=*b;
}

⌨️ 快捷键说明

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