/ ************************************************************************ * * 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/20 05:38,
18.191.4.136: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.org/techref/language/ccpp/cref/EXAMPLES/fprintf.c"> language ccpp cref EXAMPLES fprintf</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Ashley Roll has put together a really nice little unit here. Leave off the MAX232 and keep these handy for the few times you need true RS232! |
.