All pastes #640492 Raw Edit

Untitled

public text v1 · immutable
#640492 ·published 2007-07-31 12:57 UTC
rendered paste body
#include <stdio.h>
#include <curses.h>

int main (void)
{
	char option;
	
	do
	{
		printf("Hit a key:");
		option = getch();
		printf("\nYou typed %c\n", option);
	}while(option != 27);
}