摘要: 位与运算:#include <stdio.h>void main (){ printf("0 & 0 is %d\n", 0 & 0); printf("0 & 1 is %d\n", 0 & 1); printf("1 & 1 is %d\n", 1 & 1); printf("1 & 2 is %d\n", 1 & 2); printf("15 & 127 is %d\n", 15 & 127);0 阅读全文
posted @ 2013-06-01 23:06 hark.perfe 阅读(153) 评论(0) 推荐(0) 编辑
摘要: C,pasted just now:123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 #include <stdio.h> #include <stdlib.h> typedef struct node 阅读全文
posted @ 2013-06-01 22:09 hark.perfe 阅读(125) 评论(0) 推荐(0) 编辑