home *** CD-ROM | disk | FTP | other *** search
- main() /* fflush.c -- illustrates fflush() by sending 2 lines to file*/
- {
- FILE *fo;
- char dest[25];
-
- printf("Output filename? ");
- gets(dest);
- if((fo = fopen(dest,"w")) == NULL) {
- printf("Can't open %s\n",dest);
- exit();
- }
- fputs("a short string\n",fo);
- printf("Press a key...");
- getchar();
- fflush(fo);
- printf("\nPress a key...");
- getchar();
- fputs(" and a longer one",fo);
- fclose(fo);
- puts("\nCorrect answer (in file): a short string and a longer one");
- }