C語言之union結構使用小技巧-數據拆分

32位數據拆分 #include<stdio.h> typedef union { int data; struct{ char byte1; char byte2; char byte3; char byte4; }byte; }U_BIT32; int main(){ U_BIT32 test; test.data=0x12345678; printf("by
相關文章
相關標籤/搜索