home *** CD-ROM | disk | FTP | other *** search
- main() /* ftell.c -- illustrates use of ftell() */
- {
- long pos;
- int ret;
- FILE *fi, *fo;
- char c, source[25], dest[25];
-
- puts("Warning: writes over contents of named file");
- printf("test filename? ");
- gets(source);
- fi = fopen(source, "w+");
- ret = fputs("abcdefghijklmnopqrstuvwxyz", fi);
- pos = ftell(fi);
- printf("file position is %ld\n", pos);
- fclose(fi);
- puts("Done");
- }