home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
PROGRAMM
/
CTUTOR.ZIP
/
SOURCE.ZIP
/
ANYFILE.C
next >
Wrap
Text File
|
1986-05-27
|
512b
|
21 lines
#include "stdio.h"
main()
{
FILE *fp1;
char oneword[100],filename[25];
char *c;
printf("Enter filename -> ");
scanf("%s",filename); /* read the desired filename */
fp1 = fopen(filename,"r");
do {
c = fgets(oneword,100,fp1); /* get one line from the file */
if (c != NULL)
printf("%s",oneword); /* display it on the monitor */
} while (c != NULL); /* repeat until NULL */
fclose(fp1);
}