home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / DOOG / CPTUTOR2.ZIP / ANSWERS.ZIP / CH01_2.CPP < prev    next >
C/C++ Source or Header  |  1990-07-20  |  193b  |  12 lines

  1.                               // Chapter 1 - Programming exercise 2
  2. #include "iostream.h"
  3.  
  4. main()
  5. {
  6. const index = 17;
  7. volatile count;
  8.  
  9.    count = index + 12;
  10.    index = count + 3;
  11. }
  12.