home *** CD-ROM | disk | FTP | other *** search
- main() /* fopen.c -- copies a file onto the disk */
- {
- FILE *fi, *fo;
- char source[25], dest[25];
- int c;
-
- printf("Input filename? ");
- gets(source);
- printf("Output filename? ");
- gets(dest);
- fi = fopen(source, "r");
- fo = fopen(dest, "w");
- c = 0;
- while((c = getc(fi)) != EOF)
- putc(c, fo);
- fclose(fi);
- fclose(fo);
- puts("Done");
- }
-