摘要:
经典c程序100例==51--60 【程序51】题目:学习使用按位与 & 。 1.程序分析:0&0=0; 0&1=0; 1&0=0; 1&1=12.程序源代码:#include "stdio.h"main(){int a,b;a=077;b=a&3;printf("\40: The a & b(decimal) is %d \n",b);b&=7;printf("\40: The a & b(... 阅读全文
posted @ 2004-10-13 14:32
做想做的人,做想做的事
阅读(771)
评论(0)
推荐(0)
2004年10月13日