完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
方法一: 老方法,无技术,不懂单片结构的纯C写法
int itemp; char ctemp[2]; ctemp[0]=itemp & 0x00FF; ctemp[1]=itemp >> 8; 方法二:结构体法 typedef union { unsigned int temp; unsigned char i[2]; } int2char; void main(void) { int2char uchar; unsigned char i,j; uchar.temp=0x1234; i=uchar.i[0]; j=uchar.i[1]; while(1); } 方法三:直接地址法(推荐使用) ((char *)&itemp)[0]; ((char *)&itemp)[1]; 例子: void main(void) { unsigned int temp; unsigned char i,j; temp=0x1234; i=((unsigned char *)&temp)[0]; j=((unsigned char *)&temp)[1]; while(1); } 执行后: i=0x12; j=0x34; |
|
相关推荐
1 个讨论
|
|
只有小组成员才能发言,加入小组>>
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-25 19:09 , Processed in 0.537194 second(s), Total 44, Slave 34 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号