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

  1. /* ------------------------------------------------------ */
  2. /*                   CINCOUTA.CPP                         */
  3. /*        A simple program that uses 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.   CIN and COUT are variables which are used to perform
  12.   standard input and output in a C++ program. They parallel
  13.   the functionality of ANSI C's functions printf() and
  14.   scanf(). These variables are declared in all C++ programs.
  15.   They can be accessed by including the header file
  16.   "iostream.h" into any C++ source file.
  17.   CIN and COUT are of a predefined C++ Stream Library
  18.   class type. Since they are of a class type, they have
  19.   data members (variables) and member functions associated
  20.   with them. Therefore, when standard input or output is
  21.   performed in a C++ program, the functions of CIN and COUT
  22.   are called.
  23. */
  24.  
  25. #include <iostream.h>
  26.  
  27. // ------------------------------------------------------ *
  28. int main()
  29. {
  30.   int i;
  31.  
  32.   cin >> i;
  33.   cout << i;
  34.   return 0;
  35. } // end of main()
  36. /* ------------------------------------------------------ */
  37. /*                    CINCOUTA.CPP                        */
  38.  
  39.