home *** CD-ROM | disk | FTP | other *** search
- /* Ein Kommentar sieht so aus */
- /* Listing1: Programm MINICOPY */
-
- #include <stdio.h> /* Standarddefinitionen */
-
- main()
- { /* Dies ist das 'begin' in Pascal */
- int c; /* Zeichen als Integer ? */
- while((c = getchar()) != EOF) /* EOF ist end of file*/
- putchar(c);
- } /* Und schon das 'end' */
-