


printf("Signed Max:%d\n", 0x7FFFFFFF);     
printf("Signed Min:%d\n", 0x80000000);      
printf("Unsigned Max:%u\n", 0xFFFFFFFF);      
printf("Unsigned Min:%u\n", 0x00000000);      



【2014-11-21】《The Hardware/Software Interface》– Section 2
原文:http://www.cnblogs.com/sjtujoe/p/4114587.html