home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_08 / 8n08077a < prev    next >
Text File  |  1990-07-18  |  639b  |  27 lines

  1.  
  2.    function_3(array_parameter)       
  3.    int array_parameter[];
  4.        {
  5.        int local_array[10];
  6.        /* The following two statements perform the same thing */
  7.        array_parameter[1] = 5;
  8.        *(array_parameter + 1) = 5;
  9.        }
  10.  
  11.    function_4(array_parameter)
  12.    int *array_parameter;
  13.        {
  14.        int local_array[10];
  15.        /* The following two statements perform the same thing */
  16.        *(array_parameter + 1) = 5;
  17.        array_parameter[1] = 5;
  18.        }
  19.  
  20.    calling_function()
  21.        {
  22.        int array_passed[10];
  23.        function_3(array_passed);
  24.        function_4(array_passed);
  25.        }
  26.  
  27.