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

  1. // ex02006.cpp
  2. // The const variable qualifier
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     const int size = 5;
  8.     char cs[size];
  9.  
  10.     cout << "The size of cs is " << sizeof cs;
  11. }
  12.