Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - What is the storage form of long, plastic and long data in memory in C language?
What is the storage form of long, plastic and long data in memory in C language?
The storage form of long data in memory is stored with complement.

Generally speaking, in a 32-bit system, long, like int, occupies 4 bytes. For example,-1 means that there are 32 1 stored in memory.

You can refer to the relevant information of the original code, complement and complement, and write your own code to verify it.