C 语言中的有符号数和无符号数
摘要:
首先看一段程序:View Code 1 #include "stdio.h" 2 3 int main(void) 4 { 5 if ( 1 > 2) 6 { 7 printf("1 > 2 \n"); 8 } 9 10 if (-1 > 2u)11 {12 printf("-1 > 2u \n");13 }14 15 if (-1 > 0u)16 {17 printf("-1 > 0u \n");18 }19 20 return 0;21 }上面为用VC... 阅读全文
posted @ 2012-10-08 22:42 沉沉-_- 阅读(644) 评论(0) 推荐(0)
浙公网安备 33010602011771号