home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
progm
/
ctutor2.zip
/
READTEXT.C
< prev
next >
Wrap
Text File
|
1989-11-10
|
609b
|
43 lines
/* Chapter 10 - Program 4 */
#include "stdio.h"
void main()
{
FILE *fp1;
char oneword[100];
char c;
fp1 = fopen("TENLINES.TXT","r");
do {
c = fscanf(fp1,"%s",oneword); /* got one word from the file */
printf("%s\n",oneword); /* display it on the monitor */
} while (c != EOF); /* repeat until EOF */
fclose(fp1);
}
/* Result of execution
This
is
an
example
line.
Line
number
1
This
is
an
... (Many other lines) ...
Additional
lines.
Additional
lines.
lines.
*/