home *** CD-ROM | disk | FTP | other *** search
- main() /* ungetc.c -- illustrates un get function ungetc() */
-
- /* demonstrates ungetc() */
- /* Note that test.fil contains 30 consecutively-numbered lines */
-
- {
- FILE *fi;
- int c, r;
-
- if((fi = fopen("test.fil","r")) == NULL) {
- printf("Can't open test.fil\n");
- exit();
- }
- while ((c = getc(fi)) != EOF) {
- putchar(c);
- if (c == '0'&& r != '0')
- r = ungetc(c,fi);
- else
- r = EOF;
- }
- fclose(fi);
- puts("\n...Correct answer:\n1\n2\n3\n4\n5\n6\n7\n8\n9\n100\netc.");
- }