ascii.c (79B)
1 #include<stdio.h> 2 3 int main(){ 4 int c; 5 scanf("%c", &c); 6 printf("%d\n", c); 7 }