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

  1.  
  2.    function_1()
  3.        {
  4.        int good_auto_array[10];
  5.        int *integer_pointer;
  6.  
  7.        good_auto_array[1] = 5;
  8.        *(good_auto_array + 1) = 5;
  9.  
  10.        /* Point it to meaningful address */
  11.        integer_pointer = good_auto_array;
  12.  
  13.        *(integer_pointer+1) = 5;      
  14.        integer_pointer[1] = 5;            
  15.        }
  16.  
  17.