c语言求两个字符的ascll值的和
时间: 2023-06-10 11:07:51 浏览: 380
C语言训练程序_统计字符串中ASII值为偶数奇数的个数
可以使用以下代码来求两个字符的 ASCII 值的和:
```c
#include <stdio.h>
int main() {
char c1 = 'A';
char c2 = 'B';
int sum = c1 + c2;
printf("The sum of ASCII values of %c and %c is %d\n", c1, c2, sum);
return 0;
}
```
输出结果为:
```
The sum of ASCII values of A and B is 131
```
注意,这里将两个字符的 ASCII 值相加,得到了一个整数值。
阅读全文