home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX0409.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-27  |  281 b   |  15 lines

  1. // \EXAMPLES\ex0409.cpp
  2. #include <iostream.h>
  3.  
  4. void change_array(int* array, int i) {
  5.    array[i]++;
  6.    }
  7.  
  8. void main() {
  9.    int array[] = {1, 2, 3, 4};
  10.    change_array(array, 2);
  11.    cout << "Here is the value of element 2: "
  12.         << array[2]
  13.         << endl;
  14.    }
  15.