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

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