15 lines
194 B
C
15 lines
194 B
C
#include <ncurses.h>
|
|
|
|
int main()
|
|
{ int ch;
|
|
|
|
initscr();
|
|
cbreak();
|
|
noecho();
|
|
keypad(stdscr, TRUE);
|
|
|
|
ch = getch();
|
|
endwin();
|
|
printf("The key pressed is %d\n", ch);
|
|
}
|