home *** CD-ROM | disk | FTP | other *** search
- main() /* rewind.c -- demos rewind(); requires a text file on disk */
-
- {
- FILE *fi;
- char c, source[25];
- int i;
-
- printf("Name of file to read? ");
- gets(source);
- if ((fi = fopen(source,"r")) == NULL) {
- printf("Can't open %s\n",source);
- exit();
- }
- puts("It begins:");
- for (i = 0; i < 128; i++) {
- c = getc(fi);
- putchar(c);
- }
- puts("\nDa capo:"); /* this may be Latin, but it's all Greek to me. */
- rewind(fi);
- for (i = 0; i < 128; i++) {
- c = getc(fi);
- putchar(c);
- }
- fclose(fi);
- puts("\nCorrect answer is the same thing twice.");
- }