Skip to content

Instantly share code, notes, and snippets.

@neiraza
Created May 7, 2012 03:14
Show Gist options
  • Save neiraza/2625659 to your computer and use it in GitHub Desktop.
Save neiraza/2625659 to your computer and use it in GitHub Desktop.
キーバインドにテンパったとき
#include <stdio.h>
int main(void) {
int c;
while (c = getchar())
{
printf("%d 0x%02X\n", c, c);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment