11 lines
177 B
C
11 lines
177 B
C
#include <stdio.h>
|
|
int main(void)
|
|
{
|
|
char ch;
|
|
|
|
printf("Please enter a character.\n");
|
|
scanf("%c", &ch);
|
|
printf("The code for %c is %d.\n",ch,ch);
|
|
|
|
return 0;
|
|
} |