已知小写字母 b 的 ASCII码为 98,下列 C++ 代码的输出结果是( )。
#include <iostream> using namespace std; int main() { char a = 'b' + 1; cout << a; return 0; }
b
c
98
99