home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / 1987 / 03 / minicopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-02-03  |  427 b   |  13 lines

  1. /* Ein Kommentar sieht so aus                        */
  2. /* Listing1:  Programm   MINICOPY                    */
  3.  
  4. #include <stdio.h> /* Standarddefinitionen           */
  5.  
  6. main()
  7. {                  /* Dies ist das 'begin' in Pascal */
  8. int c;             /* Zeichen als Integer ?          */
  9. while((c = getchar()) != EOF)  /* EOF ist end of file*/
  10. putchar(c);
  11. }                  /* Und schon das 'end'            */
  12.  
  13.