How to realize the selection of large end and small end in C language
This article mainly introduces how to realize the choice of big-end and small-end in C language, which has a certain reference value. Interested friends can refer to it. I hope you will gain a lot after reading this article.
Big end and small end selection
Low-endian or high-endian
Typedef union {short W; / * Word access * / struct {/ * Byte access * / # ifdef LOW_ENDIAN byte low, high; / * in low-endian arch * / # else byte high, low; / * in high-endian arch * / # endif} B;} word Thank you for reading this article carefully. I hope the article "how to realize the choice of big end and small end in C language" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support and pay attention to the industry information channel. More related knowledge is waiting for you to learn!