这个程序是如何运作的?

编程入门 行业动态 更新时间:2024-10-27 04:26:44
本文介绍了这个程序是如何运作的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 #include <stdio.h> int main() { float a = 1234.5f; printf("%d ", a); return 0; }

它显示一个 0!!这怎么可能?这是什么道理?

It displays a 0!! How is that possible? What is the reasoning?

我特意在printf语句中放了一个%d来研究printf的行为.

I have deliberately put a %d in the printf statement to study the behaviour of printf.

推荐答案

那是因为 %d 需要一个 int 但你提供了一个浮点数.

That's because %d expects an int but you've provided a float.

使用 %e/%f/%g 打印浮点数.

Use %e/%f/%g to print the float.

关于为什么打印0:浮点数在发送到printf之前被转换为double.1234.5 小端双数表示法是

On why 0 is printed: The floating point number is converted to double before sending to printf. The number 1234.5 in double representation in little endian is

00 00 00 00 00 4A 93 40

A %d 使用 32 位整数,因此打印零.(作为测试,您可以 printf("%d, %d ", 1234.5f); 您可以获得输出 0, 1083394560.)

A %d consumes a 32-bit integer, so a zero is printed. (As a test, you could printf("%d, %d ", 1234.5f); You could get on output 0, 1083394560.)

至于为什么将float转成double,因为printf的原型是int printf(const char*, ...),来自 6.5.2.2/7,

As for why the float is converted to double, as the prototype of printf is int printf(const char*, ...), from 6.5.2.2/7,

函数原型声明符中的省略号会导致参数类型转换在最后一个声明的参数之后停止.对尾随参数执行默认参数提升.

The ellipsis notation in a function prototype declarator causes argument type conversion to stop after the last declared parameter. The default argument promotions are performed on trailing arguments.

从 6.5.2.2/6 开始,

and from 6.5.2.2/6,

如果表示被调用函数的表达式的类型不包含原型,则对每个参数执行整数提升,将float类型的参数提升为double.这些被称为默认参数提升.

If the expression that denotes the called function has a type that does not include a prototype, the integer promotions are performed on each argument, and arguments that have type float are promoted to double. These are called the default argument promotions.

(感谢 Alok 发现这一点.)

(Thanks Alok for finding this out.)

更多推荐

这个程序是如何运作的?

本文发布于:2023-10-24 09:00:05,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1523512.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:程序

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!