home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Between Heaven & Hell 2
/
BetweenHeavenHell.cdr
/
100
/
95
/
readchar.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-11-21
|
480b
|
20 lines
/* Chapter 10 - Program 3 */
#include "stdio.h"
main()
{
FILE *funny;
char c;
funny = fopen("TENLINES.TXT","r");
if (funny == NULL) printf("File doesn't exist\n");
else {
do {
c = getc(funny); /* get one character from the file */
putchar(c); /* display it on the monitor */
} while (c != EOF); /* repeat until EOF (end of file) */
}
fclose(funny);
}