2011-11-10 10:01:59 +00:00
|
|
|
/*
|
|
|
|
* A Win32 program that reads raw console input with getch and echos
|
|
|
|
* it to stdout.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <conio.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2012-04-01 08:40:30 +00:00
|
|
|
int count = 0;
|
|
|
|
while (true) {
|
|
|
|
int ch = getch();
|
|
|
|
printf("%02x ", ch);
|
|
|
|
if (++count == 50)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
2011-11-10 10:01:59 +00:00
|
|
|
}
|