/ ************************************************************************ * * Purpose: To show fprintf in action. * Author: M J Leslie * Date: 15-May-96 * Use: The program takes data from STDIN and sends it to a file. * An example use would be. * * cat /etc/hosts | fprintf * ************************************************************************/ #include <stdio.h> main() { FILE *Ptr; char Line[256]; /* ... Open a file for output. */ Ptr = fopen("/tmp/OutputFile", "w"); while(gets(Line)) /* Get data from stdin */ { fprintf(Ptr, "%s\n", Line); /* Send data to file. */ } fclose(Ptr); }
file: /Techref/language/ccpp/CREF/EXAMPLES/fprintf.c, 0KB, , updated: 1997/4/21 08:52, local time: 2024/11/14 09:18,
18.217.55.29:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/language/ccpp/CREF/EXAMPLES/fprintf.c"> language ccpp CREF EXAMPLES fprintf</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.