我想打印 4 个字节的无符号整数的最大值。
#include "stdafx.h"
#include "conio.h"
int _tmain(int argc, _TCHAR* argv[])
{
unsigned int x = 0xffffffff;
printf("%d\n",x);
x=~x;
printf("%d",x);
getch();
return 0;
}
但我得到的输出为 -1 和 0。如何打印 x = 4294967295?