是否有 LARGEST_INTEGER 宏或类似的宏? (三)

发布于 2024-09-16 23:09:11 字数 358 浏览 4 评论 0原文

可能的重复:
如何设置变量C 中可能的最大数?
int 的最大值

我需要在代码中使用最大整数值,但我不这样做不想显式写入 4294967295。它在某处定义吗?

Possible Duplicates:
How would you set a variable to the largest number possible in C?
maximum value of int

I need to use the maximum integer value in my my code, but I don't want to explicitly write 4294967295. Is it defined somewhere?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

﹏半生如梦愿梦如真 2024-09-23 23:09:11

中定义的 INT_MAX(对于 int)或 UINT_MAX(对于 unsigned int) ;

INT_MAX (for int) or UINT_MAX (for unsigned int) defined in <limits.h>

花开浅夏 2024-09-23 23:09:11

使用 limits.h

#include <limits.h>

int maximum = INT_MAX;

Use limits.h:

#include <limits.h>

int maximum = INT_MAX;
梦年海沫深 2024-09-23 23:09:11

limits.h 中应该有一个常量,如果我没记错的话应该是 INT_MAX

There shall be a constant in limits.h, if I'm not mistaken it shall be INT_MAX

两个我 2024-09-23 23:09:11
#include <limits.h>

INT_MAX
#include <limits.h>

INT_MAX
司马昭之心 2024-09-23 23:09:11

INT_MAX 在中定义

INT_MAX as defined in <limits.h>

小耗子 2024-09-23 23:09:11

包含文件 stdint.h 包含不同整数类型的所有不同宏。特别是 UINTMAX_MAX 对于 uintmax_t

The include file stdint.h includes all different macros for the different integer types. In particular UINTMAX_MAX for uintmax_t.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文