This question already has answers here:
What does the C++ standard state the size of int, long type to be?
                                
                                    (24个答案)
                                
                        
                                5年前关闭。
            
                    
我想知道Linux上64位GCC的最大无符号整数值是多少。
在32位GCC上,它是4294967295。
我只有32位计算机,所以无法检查。

最佳答案

您可以使用在UINT_MAX中定义的宏limits.h找出此值。

关于c - 64位GCC上int的最大值是多少,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22449443/

10-09 03:38