•  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 ]

Type                 bytes   minimum        maximum 
----                 -----   -------        -------
void                     0
signed char              1   -128           +127
unsigned char            1   0              255
enum                     2   -32768         +32767
signed short, int        2   -32768         +32767
unsigned short, int      2   0              65535
signed long              4   -2147483648    +2147483647
unsigned long            4   0              4294967295
Pointers                 4   0              4292967295

Type    bytes   dynamic range          significant digits
----    -----   -------------          ------------------
float       4   3.4E-38   to 1.2E+38      6
double  10/12   1.7E-4932 to 1.2E+4932   18

Defaults are 'signed' and 'int'.  (See -K flag of Compiler Options.)

See also typedef, struct, and union.