[C Language Core Series] More than 20,000 words to elaborate on the pointers of the C language core

All data in the computer must be placed in memory, and different types of data occupy different bytes. For example, int occupies 4 bytes, and char occupies 1 byte. In order to access these data correctly, each byte must be numbered, just like the house number and ID number, the number of each byte is unique, and a certain byte can be accurately found according to the number.

The figure below is the number of each byte in the 4G memory (expressed in hexadecimal) ÿ

Guess you like

Origin blog.csdn.net/weixin_54707168/article/details/114968699