•  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[ Call of non-function ]

  Name used in function call defined as something else.

  You probably used parenthesis where you should have used brackets:

    array(i);  /* instead of */  array[i];

  or left out an operator between the name and the parenthesis:

    variable (a + b);  /* instead of  */  variable * (a + b);

See also Arrays, Operators and Functions.