“真实类型”和“真实类型”有什么区别?和“算术类型”在C语言中?
C99 标准是这样描述它们的:
整数和实数浮点类型 统称为真实类型。
整数和浮点类型是 统称为算术类型。
这是否意味着它们在 C 语言中是相同的?或者说它们之间有什么区别吗?
The C99 standard describes them as so:
The integer and real floating types
are collectively called real types.Integer and floating types are
collectively called arithmetic types.
Does this mean they're the same thing in C? Or are there any differences between them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
复杂类型是算术类型,但不是实数类型。
Complex types are arithmetic types, but not real types.
来自 ISO C 99 6.2.5 18:
From ISO C 99 6.2.5 18: