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

  1. // \EXAMPLES\ex0407.cpp
  2.  
  3. #include <iostream.h>
  4.  
  5. int& change_int(int& x) {
  6.    cout << "Here is x " << x << endl;
  7.    return x;
  8. }
  9.  
  10. void main() {
  11.    int x = 0;
  12.    change_int(x) = 5;
  13.    change_int(x) = 6;
  14.    cout << "Final value of x is " << x << endl;
  15. }
  16.