Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - What do 16-bit integer constants and 32 bits in C language stand for respectively? Solve! ! !
What do 16-bit integer constants and 32 bits in C language stand for respectively? Solve! ! !
16 plastic constant refers to binary 16 plastic, which can be divided into signed and unsigned plastics.

Signed is a short integer with a value range of -32768 to 32767.

Unsigned is an unsigned short integer with a value range of 0-65535.

32-bit integer constant refers to binary 32-bit integer, which can be divided into signed and unsigned.

The signed symbol is long int, and the numerical range is -2 147483648 to 2 147483647.

Unsigned is an unsigned long integer with a value range of 0-4294967295.