Language Ccpp Cref Examples Fgets.c

/ ********************************************************************
 *
 * Purpose: Program to demonstrate the 'fgets' function.
 * 	 The prog will count the number of lines in a file.
 * 	 The is a function of the UNIX command 'wc'
 * Author: M J Leslie
 * Date: 10-Apr-94
 *
 ********************************************************************/
#include <stdio.h>
#define LINE_LENGTH 80
main()
{
 FILE* fp;
 char line[LINE_LENGTH];
 int count=0;
 fp=fopen("/home/DOC/C/c.html","r");
					/* Count up the lines here. */
 while ( fgets(line, LINE_LENGTH, fp) != NULL) count++;
 printf("File contains %d lines.\n", count);
 fclose(fp);
}

file: /Techref/language/ccpp/cref/EXAMPLES/fgets.c, 0KB, , updated: 1997年4月21日 09:52, local time: 2025年9月18日 18:34,
40.74.122.252:LOG IN

©2025 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://massmind.org/techref/language/ccpp/cref/EXAMPLES/fgets.c"> language ccpp cref EXAMPLES fgets</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /