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

  signed   int   -32768 through +32767  (default)
  unsigned int   0 through 65535

'int *' is a pointer to an 'int' variable or constant. 
'(int)' is a type conversion operator (see casting).

'int' is used as as the "preferred" integer size, so on some computers
'int' is 'short' and on others 'int' is 'long'.

Note: Lattice C defaults to 'int' as 'long'.


See also Constants, Variables, Arrays and Pointers.