please dont rip this site

Language Ccpp Cref Examples Read_file.c

/ ************************************************************************
 *
 * Purpose: To display a file on the screen  (Unix 'cat' command).
 *	    Version 1
 *
 * to do:   Read file name from command line.
 *
 * Author:  M J Leslie
 * Date:    06-Feb-94
 *
 ************************************************************************/

#include <stdio.h>

main()
{
  int c;				/* Character read from the file.	*/
  FILE *ptr;			/* Pointer to the file. FILE is a
				   structure  defined in <stdio.h>	*/

				/* Open the file - no error checking done */
  ptr = fopen("/etc/hosts","r");
				/* Read one character at a time, checking 
				   for the End of File. EOF is defined 
				   in <stdio.h>  as -1 			*/
  while ((c = fgetc(ptr)) != EOF)
  {
    printf("%c",c);		/* O/P the character to the screen	*/
  }

  fclose(ptr);			/* Close the file.			*/
}


file: /Techref/language/ccpp/cref/EXAMPLES/read_file.c, 0KB, , updated: 1997/4/21 09:52, local time: 2024/4/20 05:56,
TOP NEW HELP FIND: 
3.140.185.147: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://techref.massmind.org/techref/language/ccpp/cref/EXAMPLES/read_file.c"> language ccpp cref EXAMPLES read_file</A>

Did you find what you needed?

 

Welcome to massmind.org!

 

Welcome to techref.massmind.org!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .