home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / dtx9202 / borhot / cincoutb.cpp < prev    next >
C/C++ Source or Header  |  1992-01-06  |  1KB  |  36 lines

  1. /* ------------------------------------------------------ */
  2. /*                   CINCOUTA.CPP                         */
  3. /*               I/O using cin and cout                   */
  4. /*            (c) 1990 Borland International              */
  5. /*                 All rights reserved.                   */
  6. /* ------------------------------------------------------ */
  7. /*  veröffentlicht in: DOS toolbox 2'92                   */
  8. /* ------------------------------------------------------ */
  9.  
  10. /*
  11.   This program inputs an integer from the keyboard and puts
  12.   it into the variable 'i' using the overloaded member
  13.   operator >>. The next statement outputs the variable to
  14.   stdout using the overloaded member operator <<.
  15.   Since the overloaded insertion and extraction operators
  16.   used above are members of CIN or COUT, they can
  17.   alternatively be called using the dot member access
  18.   operator.
  19. */
  20.  
  21. #include <iostream.h>
  22.  
  23. // ------------------------------------------------------ *
  24. int main()
  25. {
  26.   int i;
  27.  
  28.   cin.operator  >> (i);
  29.   cout.operator << (i);
  30.  
  31.   return 0;
  32. } // end of main()
  33. /* ------------------------------------------------------ */
  34. /*                 Ende von CINCOUT.CPP                   */
  35.  
  36.