Introduction
Statistics
Contact
Development
Disclaimer
Help
bitreich.org home page
#include <stdio.h>
#include <curses.h>
main()
{
int c;
char s[80];
initscr();
raw();
noecho();
keypad(stdscr, TRUE);
c = getch();
sprintf(s, "%d\n", c);
addstr(s);
getch();
endwin();
exit(0);
}