home *** CD-ROM | disk | FTP | other *** search
- main() /* putc.c -- illustrates use of putc() */
- {
- FILE *fi, *fo;
- int i;
- char c, dest[25];
- char ibuf[255];
-
- printf("Output filename? ");
- gets(dest);
- fo = fopen(dest, "w");
- puts("Type something:");
- gets(ibuf);
- puts(ibuf);
- for (i = 0; ibuf[i] != 0; i++)
- putc(ibuf[i], fo);
- fclose(fo);
- puts("Done");
- }