please dont rip this site

Language Ccpp Cref Examples Fprintf.c

/ ************************************************************************
 *
 * 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 09:52, local time: 2024/4/25 19:24,
TOP NEW HELP FIND: 
18.224.44.108: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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.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!

 

Welcome to www.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .