浮点库的连接问题(针对有的时候scanf("%f",&fn);出现的异常)

浮点库链接,
只要在 输入语句之前加 一个显式的浮点操作即可 ...

早期为了节省资源,
在默认情况下是不链接浮点库的。
(也就是在没有显式浮点操作的情况下,浮点库将不被链接,使用浮点操作就会发生错误)

 

      [quote]

     Q. I get a "floating point formats not linked" message when I run
    my program. What can I do about it?
 
 A. Floating point formats (for scanf() and related functions) are
    not always linked, for savings in executable size. To force their
    inclusion, put the following somewhere in your source files:
 
      extern unsigned _floatconvert;
      #pragma extref _floatconvert
 

      [/quote]
 

你可能感兴趣的:(浮点库的连接问题(针对有的时候scanf("%f",&fn);出现的异常))