/* ==================================== *\
 *	File      : \WriteFil.c              *
 *	Påbegyndt : 20.03.01 Henning Karlby  *
 *	Færdig    :                          *
 *	Ændret    :                          *
 * Eksempel på skrivning til fil        *
\* ==================================== */

/* ---- INCLUDES ------- */
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

/* --------- main ----------- */
void main(void)
	{
		FILE *fptr;
		char ch;

		fptr = fopen("textfil.txt", "w");
		while( (ch = getche() ) !='\r')
			putc(ch, fptr);
		fclose(fptr);
	}
