编写一个C语言程序,读入一个字母,输出与之对应的ASCII码值。
时间: 2023-04-07 09:03:58 浏览: 148
两个一元多项式相加的程序
5星 · 资源好评率100%
好的,这个问题可以回答。以下是C语言程序:
```c
#include <stdio.h>
int main() {
char c;
printf("请输入一个字母:");
scanf("%c", &c);
printf("对应的ASCII码值为:%d\n", c);
return 0;
}
```
阅读全文