home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK4 / SAMPLES / CPPTUTOR / CONST.CP$ / CONST
Encoding:
Text File  |  1991-12-12  |  276 b   |  15 lines

  1. // CONST.CPP
  2.  
  3. // This is an example program from Chapter 2 of the C++ Tutorial. This
  4. //     program demonstrates the const qualifier.
  5.  
  6. #include <iostream.h>
  7.  
  8. void main()
  9. {
  10.    const int SIZE = 5;
  11.    char cs[SIZE];
  12.  
  13.    cout << "The size of cs is " << sizeof cs;
  14. }
  15.