home *** CD-ROM | disk | FTP | other *** search
- main() /* fprintf.c -- demonstrates fprintf() function */
- {
- FILE *fo;
- char c, dest[25];
- int i;
- char *cp;
- double d;
-
- printf("Output filename? ");
- gets(dest);
- if((fo = fopen(dest,"w")) == NULL) {
- printf("Can't open %s\n",dest);
- exit();
- }
- c = 'A';
- i = 999;
- cp = "This is an arbitrary string.";
- d = 123.456;
- fprintf(fo,"%c %d %s %lf\n", c, i, cp, d);
- fclose(fo);
- puts("Correct answer (in file):A 999 This is an arbitrary string. 123.456000");
- }