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

  1. // ex06004.cpp
  2. // Anonymous objects from constants
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     int& otherint = 123;
  8.  
  9.     cout << '\n' << otherint;
  10.     otherint++;
  11.     cout << '\n' << otherint;
  12. }
  13.