在C语言中如何把十六进制数的后两位、中间两位以及高位数分别取出来。
1个回答
展开全部
用&0xFF取出该数的最低两位,再将该数右移8位,如此循环至该数为0结束。举例代码如下:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
int main(void){
int x=0xe7cf9,tmp=x;
while(tmp){
printf("%02X ",tmp&255);
tmp>>=8;
}
printf("\n");
return 0;
}
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
int main(void){
int x=0xe7cf9,tmp=x;
while(tmp){
printf("%02X ",tmp&255);
tmp>>=8;
}
printf("\n");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询