•  Back 
  •  C Language 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : C-Language Documentation
Author      : John Kormylo
Version     : C.HYP 1.0
Subject     : Documentation/C-Language
Nodes       : 233
Index Size  : 6362
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ Data Types: signed ]

  signed char    -128   through 127
  signed short   -32768 through +32767
  signed int     -32768 through +32767  (default)
  signed long    -2147483648 through +2147483648

Uses two's complement: the leftmost bit is set for all negative
values, and every bit is set for -1.  Casting from shorter to longer
types uses sign bit extension.  Casting from longer to shorter types
chops off the leftmost bits.

See also Variables and casting.