本文介绍了为什么我的C代码给出0作为输出?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我使用浮点变量f并用3.3初始化它。后来我尝试使用%d格式说明符打印输出,但输出为0。现在我的问题是为什么我得到0而不是3? 我尝试过的事情: void main() { float f = 3.3; printf(f的值是:%d ,f); gecth(); } 解决方案 I use a float variable f and initialize it with 3.3. Later I tried to print output using %d format specifier but I got 0 as output. Now my question is why I got 0 but not 3?What I have tried:void main(){ float f=3.3; printf("value of f is : %d",f); gecth();} 解决方案 这篇关于为什么我的C代码给出0作为输出?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-07 06:38