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

  1. /* ------------------------------------------------------ */
  2. /*                   CINCOUTC.CPP                         */
  3. /*          Using istream's get member function           */
  4. /*            (c) 1990 Borland International              */
  5. /*                 All rights reserved.                   */
  6. /* ------------------------------------------------------ */
  7. /*  veröffentlicht in: DOS toolbox 2'92                   */
  8. /* ------------------------------------------------------ */
  9.  
  10. /*
  11.   Accessible member functions of the base classes can be
  12.   called. This program calls the member function 'get' of
  13.   class istream using the variable CIN and the member
  14.   function 'put' of class ostream using the variable COUT.
  15. */
  16.  
  17. #include <iostream.h>
  18.  
  19. // ------------------------------------------------------- *
  20. int main()
  21. {
  22.   char ch;
  23.  
  24.   cin.get(ch);
  25.   cout.put(ch);
  26.   return 0;
  27. } // end of main()
  28. /* ------------------------------------------------------ */
  29. /*                Ende von CINCOUTC.CPP                   */
  30.  
  31.