Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 425 Bytes

long.md

File metadata and controls

10 lines (6 loc) · 425 Bytes

Long

Long is short for long int.

A long integer_ can represent a whole integer whose range is greater than or equal to that of a standard integer on the same machine. In C, it is denoted by long. It is required to be at least 32 bits, and may or may not be larger than a standard integer, but this is not required.

See integer.