C++ 求和 char 和整数

C++ sum char and integer

我很难解决这个问题。你能告诉我以下语法的结果是什么吗?

strcpy(s,"3x2y1");
s[2]='x'+2; /* what's showing when the following add is done? */

谢谢!

此处 s 将是“3xzy1”,因为 s[2]='x'+2; 使 s[2] 等于 'z',其中 'z' 是字符,而不是字符串。

'x'-1=='w';
'x'+1=='y';
'x'+2=='z'