12 lines
166 B
C
12 lines
166 B
C
#include <stdio.h>
|
|
#include <conio.h>
|
|
|
|
void main()
|
|
{
|
|
int c;
|
|
|
|
printf( "Press any key\n" );
|
|
c = getche();
|
|
printf( "You pressed %c(%d)\n", c, c );
|
|
}
|