•  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[ Possible use of 'XXXXXX' before definition ]

  auto variables should be initialized during execution before
  they are used in an operation.  However, it is possible that the
  initialization was too obscure for the compiler to figure out.

  For example,

   for(i=0; i<100; i++) {
     if(i == 0) sum = 0;
     else sum = sum + i;
    }

  will produce this warning for 'sum'.

def = code for #pragma warn.
 1  = warning level for message.