•  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[ Function Calling ]

Syntax:
               <name> ( <arg> [, ...] )
               <name> ()

where <name> is the function name and the value of <arg> is passed to
the corresponding function parameter.

Function arguments can be variables, constants or expressions.
Functions can be used as part of an expression, or simply as a
statement by itself (the return value does not have to be used).

Examples:

  fd = fopen("file.dat", "w");   /* FILE *fd */

  strcpy(array, "string");   /* char array[32] */

  if( fwrite(array, strlen(array), 1, fd) ) return(-1);