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

... are composed of characters a-z A-Z 0-9 and _
The first character must not be 0-9 and the maximum length is set by
the Compiler Options.

A name cannot be identical to one of the C Language keywords, including
unused keywords far, huge and near.

A name defined in a function or local block will override a previous
definition for the duration of the block { }.

By convention, macros and (new) data types are in upper case while
variables, functions, structures, unions and enums are in lower case.
Pointers should start with the letter 'p', and unions with the letter
'u'.  (Optional)