写c语言,一个函数分别打印它的高字节和低字节,并编写主程序测试?
发布网友
发布时间:2024-10-07 03:02
我来回答
共2个回答
热心网友
时间:2024-11-15 20:10
void prtbyte(unsigned short x)
{printf("High Byte:%x\n",x>>8);
printf("Low Byte:%x\n",x&0xff);
}
int main()
{unsigned short x;
scanf("%hu",&x);
prtbyte(x);
return 0;
}
热心网友
时间:2024-11-15 20:11
void function(unsigned int A)
{
Printf("High Word:%x \n",A&0x00ff);
Printf("High Word:%x \",(A&0xff00)>>8);
}追问请问,什么是u1、u2、u3、u4...类型?