home *** CD-ROM | disk | FTP | other *** search
- main() /* lputc.c -- typewriter program using lputc.c */
-
- {
- int c;
-
- puts("I'm a typewriter. When you want to stop,");
- puts("press <Ctrl-z>. Please type below:");
- while((c = getchar()) != EOF)
- lputc(c);
- puts("Correct answer (on printer) is what you typed.");
- }