Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 461 Bytes

short.md

File metadata and controls

10 lines (6 loc) · 461 Bytes

Short

Short is short for short int.

A short integer can represent a whole number that may take less storage, while having a smaller range, compared with a standard integer on the same machine. In C, it is denoted by short. It is required to be at least 16 bits, and is often smaller than a standard integer, but this is not required.

See integer.