home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / TC-300 / EXAMPLES / INTRO10.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-17  |  161 b   |  11 lines

  1. //INTRO10.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.     int val;
  8.     cout<<'\n'<< (val = 7);
  9.    return 0;
  10. }
  11.