home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 May / PCPlus May 1998=disk A.iso / full / CBUILDER / SAMS / SAMPLES / CHAP01 / WRAPME.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-12  |  271 b   |  16 lines

  1. #include <iostream.h>
  2. #include <conio.h>
  3. #pragma hdrstop
  4.  
  5. int main(int argc, char **argv)
  6. {
  7.   short x = 32767;
  8.   cout << "x = " << x << endl;
  9.   x++;
  10.   cout << "x = " << x << endl;
  11.   cout << endl << "Press any key to continue...";
  12.   getch();
  13.   return 0;
  14. }
  15.  
  16.