I am using C to write up a program that uses every key on the keyboard for int. In C, I am using ncurses.h
and am using cbreak()
. cbreak()
doesn't work with it. I then used raw()
which is apparently is supposed to stop all keyboard input.
I am using
keypad(stdscr, TRUE);
to take all keyboard input, and it still doesn't take print screen as an input value and ignores it
If anyone has answer for this?