/* ==================================== *\
 *	File      : \ReadFil.c       *
 *	Påbegyndt : 20.03.01 Henning Karlby  *
 *	Færdig    :                          *
 *	Ændret    :                          *
 * Eksempel på læsning fra fil          *
\* ==================================== */

/* ---- INCLUDES ------- */
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

/* --------- main ----------- */
void main(void)
	{
		FILE *fptr;
		char ch;

		fptr = fopen("textfil.txt", "r");
		while( (ch = getc(fptr) ) !=EOF)
			printf("%c", ch);
		fclose(fptr);
	}
