静止的流水的学习日志
静止的流水
全部博文(210)
Windows(1)
Linux(31)
2011年(34)
2010年(121)
2009年(37)
2008年(18)
cynthia
wojiuzhu
jd_lzh
鄙人姓王
Jack_Tan
fanbiubi
猜我咯
aaccp1
chrisy52
分类: C/C++
2010-07-16 20:13:45
#define BIT3 (0x1<<3)using namespace std;static int a;void set(void){ a|=BIT3;}void clear(void){ a&=~BIT3;}int main(int argc, _TCHAR* argv[]){ a = 99; cout<<a<<endl;//99 set(); cout<<a<<endl;//107 clear(); cout<<a<<endl;//99}
上一篇:设置绝对地址的内存为特定值
下一篇:反转字符串
登录 注册