please dont rip this site

language ccpp cref EXAMPLES continue

/ **************************************************************************
 *
 * Purpose: To filter some records. 
 * 	    Demonstrates the 'continue', 'feof' & 'fgets' statemnts.
 * Author:  M J Leslie
 * Date:    07-Jun-94
 *
 *************************************************************************/

#include <stdio.h>

main()
{
  char data[80];		/* Record 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 record at a time, checking 
				   for the End of File. EOF is defined 
				   in <stdio.h>  as -1 			*/

  while (feof(ptr) == 0)
  {
    fgets(data, 80, ptr);	/* Read next record			*/
    if (data[0] == '#') continue; /* filter out the comments		*/
    printf("%s",data);	/* O/P the record to the screen		*/
  }

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


file: /Techref/language/ccpp/cref/EXAMPLES/continue.c, 0KB, , updated: 1997/4/21 08:52, local time: 2012/2/10 14:41,
TOP NEW HELP FIND: 
38.107.179.230:LOG IN

 ©2012 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.piclist.com/techref/language/ccpp/cref/EXAMPLES/continue.c"> language ccpp cref EXAMPLES continue</A>

Did you find what you needed?

 
THE T-SHIRT IS HERE!
The PICList shop now offers mugs, steins and...
T-Shirts!!!
 

SX MASTERS: Eric Smith and Richard Ottosen's SERVID is an intellegent RS232 video terminal (4x20 character display) in one chip. See the write up here..

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .