16 lines
314 B
C
16 lines
314 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
char c;
|
|
for(;;)//while(1)
|
|
{
|
|
printf( "\nPress any key, Q to quit: " );
|
|
// Convert to character value
|
|
scanf("%c", &c);
|
|
printf("%x\n",c);
|
|
if (c == 'Q')
|
|
break;
|
|
}
|
|
return 0;
|
|
} // Loop exits only when 'Q' is pressed
|