64位系统下
int 型取值范围 [ -2147483648 , 2147483647 ]
unsigned int 取值范围为 [ 0 , 4294967295 ]
结果为:
参考:当int类型超出了[-2147483648,2147483647]会发生什么?-CSDN博客 这个说法
将进行循环赋值。
编译过程中仅 unsigned 类型会有 overflow 的 warning出现:
使用过程中需要额外注意。
C语言在32和64位系统基本数据类型取值范围_c取整型高32位-CSDN博客
标签:int,unsigned,越界,CSDN,2147483647,2147483648,取值 From: https://www.cnblogs.com/RxLuna/p/17785418.html