Match the signed integer type with its range:
Signed 8-bit (char) ↔️ -128 to 127
Signed 16-bit (short) ↔️ -32,768 to 32,767
Signed 32-bit (int) ↔️ -2,147,483,648 to 2,147,483,647
Signed 64-bit (long long) ↔️ -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807