- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在需要更新的算法中找到了这段代码:
if (value > (unsigned long long) LONG_MAX)
value
是两个相除的结果
uint64_t
数字。
(unsigned long long) LONG_MAX
是一个非常大的数字:
#include "stdio.h"
#include "limits.h"
int main() {
unsigned long long ull = (unsigned long long) LONG_MAX;
printf("%lu",ull);
return 0;
}
9223372036854775807
if
语句将评估为
true
?
最佳答案
一个 float
或 double
可以比那个大。 C standard的附录Ep5规定任何一种类型都必须能够保存至少与 1E37
一样大的值。这是一个大于 LONG_MAX
的值必须至少为 2147483647:
The values given in the following list shall be replaced by implementation-defined constant expressions with values that are greater than or equal to those shown:
#define DBL_MAX 1E+37
#define FLT_MAX 1E+37
#define LDBL_MAX 1E+37
value
是这两种类型中的任何一种,它都可以评估为真。
value
是
uint64_t
,其最大值为 18446744073709551615,这也可以大于
LONG_MAX
.
关于c - 怎么可能比 (unsigned long long) > LONG_MAX 大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60282407/
我试图用这个递归函数打印出 LONG_MAX 的八进制值(包含在 limits.h 中): void ft_get_nbr_base(long int nb, char *base, int i
我需要声明一个大小为 LONG_MAX 的数组(2147483647,在 c 库中 ),我确实需要它来解决问题。但是代码给了我错误:如果我写 long int v[LONG_MAX];编译器给出 s
我用 C++ Primary Plus 写了关于变量大小的程序这是代码: #include #include using namespace std; int main() { int n
我正在尝试使用 fseek 单步执行一个非常大(~500 GB)的文件。由于 fseek 的第二个参数偏移量是一个 long int,因此我必须考虑何时需要的偏移量大于 2^31 - 1。这是我的解决
以下定义在GNU C编译器的limits.h头文件中, #define LONG_MAX 2147483647L 使用的 L 后缀表示数字 2147483647 应被视为长整数文字。但该语句实际
我在需要更新的算法中找到了这段代码: if (value > (unsigned long long) LONG_MAX) 编辑:value是两个相除的结果 uint64_t数字。 我明白 (uns
我有一个在 Windows 8.1 上使用 MS Visual Studio 2012 用 ANSI C 编写的函数,该函数接受一个包含 20 个 chars 空间的字符数组 lexeme 并进行检查
作为家庭作业,我正在编写一个处理大量 time_t 对象的程序。我考虑过检查它们是否溢出,但后来我想到,如果它们溢出,我们可能都会遇到麻烦。 有这方面的计划吗?当自 epoch 以来的时间超过存储空间
我正在尝试使用 git-svn 从 subversion 迁移。 现在我被失败阻塞了 $ git svn fetch 在 Git.pm 的第 900 行失败(来自 git-svn 包) ...
根据 strtol 的规范: If the subject sequence has the expected form and the value of base is 0, the sequenc
这是我用来查找 LONG 的符号常量值的代码 #include //These header files contains the symbolic constants #inc
我是一名优秀的程序员,十分优秀!