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