本文介绍了浮点支持未加载,如何强制浮动支持始终内置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 嗨我们有一个非常不同的2010项目,它只与libcmt.lib和我们自己的lib文件链接。 我得到了这个  "浮点支持未加载" 我在网上搜索过,添加的代码如下,   float a = 2.34,b = 1.2,c; int _fltused = 1; c = a * b; printf("%f\ n",c);   但问题仍然存在对于printf,那么如何强制浮点支持始终内置? 谢谢!解决方案 hi We have a a pretty different 2010 project, it only links with libcmt.lib and our own lib files.The i got this  "floating point support not loaded"i've searched online, added the code as following, float a = 2.34, b= 1.2, c;int _fltused = 1;c = a*b;printf("%f\n", c); but the problem is still there for printf, so how to force the floating point support to be always built in ?Thanks ! 解决方案 这篇关于浮点支持未加载,如何强制浮动支持始终内置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-02 23:50