会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
邵朋院的代码世界
Code Creates Intelligence
博客园
首页
新随笔
联系
订阅
管理
2021年2月3日
C语言中按位置1,清0和获取某一位的操作
摘要: #include <stdio.h> int main() { unsigned char c = 2; printf("c=%d\n",c); int nbit = 3; c|=1<<nbit; printf("第%d位置1后,c=%d\n",nbit,c); c&=~(1<<nbit); pri
阅读全文
posted @ 2021-02-03 17:34 SpyCoder
阅读(1800)
评论(0)
推荐(0)
编辑
公告