home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / c_plus_tut / examp_cpp / ch01_2 < prev    next >
Encoding:
Text File  |  1994-04-05  |  182 b   |  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.