home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_10 / 1010065b < prev    next >
Text File  |  1992-08-11  |  344b  |  17 lines

  1. int function_expecting_reference_to_int( int & input_value);
  2.  
  3. void calling_function(void)
  4.     {
  5.     int i;
  6.     function_expecting_reference_to_int(i);
  7.     }
  8.  
  9. int function_expecting_reference_to_int( int & input_value)
  10.     {
  11.     int local_variable;
  12.     /* Do something with it */
  13.     local_variable = input_value;
  14.     ...
  15.     }
  16.  
  17.