home *** CD-ROM | disk | FTP | other *** search
- main() /* lputs.c -- illustrates lputs() as a typewriter program */
-
- {
- char ac[128];
-
- puts("I'm a typewriter. When you want to stop, begin your last");
- puts("line with a $. Please type below:");
- do {
- gets(ac);
- lputs(ac);
- lputc('\n');
- } while (ac[0] != '$');
- puts("Correct answer (on printer) is what you typed.");
- }