将两个8为数据用memcpy拷贝到一个16位数据中,高低字节颠倒
时间:10-02
整理:3721RD
点击:
将两个8为数据用memcpy拷贝到一个16位数据中,高低字节颠倒
u8 temp_8[2];u16 temp_16;
memcpy(&temp_16,temp_8,2);
结果发现temp_8的两个字节互换的存储在temp_16;
这是为什么?
我用的keil5
u8 temp_8[2];u16 temp_16;
memcpy(&temp_16,temp_8,2);
结果发现temp_8的两个字节互换的存储在temp_16;
这是为什么?
我用的keil5