home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX06001.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  328 b   |  19 lines

  1. // ex06001.cpp
  2. // The reference
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     int actualint = 123;
  8.     int& otherint = actualint;
  9.  
  10.     cout << '\n' << actualint;
  11.     cout << '\n' << otherint;
  12.     otherint++;
  13.     cout << '\n' << actualint;
  14.     cout << '\n' << otherint;
  15.     actualint++;
  16.     cout << '\n' << actualint;
  17.     cout << '\n' << otherint;
  18. }
  19.