iinntt -- C Keyword

Data type

An iinntt is the most commonly used numeric data type, and is normally used to
encode integers.   Under COHERENT 386, an  iinntt is the same  size as a lloonngg;
ssiizzeeooff iinntt equals 4 (31 bits  plus a sign bit), and can hold any value from
-2,147,483,647 to  2,147,483,647.  Under COHERENT  286, an iinntt  is the same
size as  a sshhoorrtt; that is,  ssiizzeeooff iinntt equals 2 (15 bits  plus a sign bit),
and can hold any value from from -32768 to +32767.

An  iinntt normally  is sign  extended  when cast  to a  larger data  type; an
uunnssiiggnneedd iinntt, however, will be zero extended.

_S_e_e _A_l_s_o
CC kkeeyywwoorrddss, ddaattaa ffoorrmmaattss, ddaattaa ttyyppeess, lloonngg, sshhoorrtt
ANSI Standard, section 6.1.2.5
