会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
假如蜗牛有梦想
博客园
首页
新随笔
联系
管理
订阅
2019年5月27日
高低位数据分离的两种方法
摘要: 1、可以采用取整和取余的方式实现: 2、可以采用移位的方式实现: #include <stdio.h> int main(int argc, char **argv) { int test = 0x2345; printf("%#x\r\n", (test >>8) & 0xff); printf(
阅读全文
posted @ 2019-05-27 09:31 假如蜗牛有梦想
阅读(991)
评论(0)
推荐(0)
编辑
公告