/* ==================================== *\
 *	File      : \Kurs-2\Bogstav.c        *
 *	Påbegyndt : 12.2.01 Henning Karlby   *
 *	Færdig    :                          *
 *	Ændret    :                          *
\* ==================================== */

/* ---- INCLUDES ------- */
#include <stdio.h>     // Til printf()
#include <conio.h>     // Til getche()

void main(void)
	{
		char ch = 'a';

		while ( ch != '\r' )
			{
				printf("\nIndtast et tegn: ");
				ch = getche();
				printf("\nVærdien af tegnet %c er %d.\n", ch, ch);
			}
	}
