/* ==================================== *\
 *	File      : \StrFil1.c       *
 *	Påbegyndt : 20.03.01 Henning Karlby  *
 *	Færdig    :                          *
 *	Ændret    :                          *
 * Skrivning af linier til en fil       *
\* ==================================== */

/* ---- INCLUDES ------- */
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <stdlib.h>

/* --------- main ----------- */
void main(void)
	{
		FILE *fptr;
		char text[81];

		fptr = fopen ("bruger.txt", "w");
		while( strlen( gets(text) ) > 0)
			{
				 fputs(text, fptr);
				 fputs("\n", fptr);
			}
		fclose(fptr);
	}
