此代码给出输出“AA”。为什么此代码不打印“A”?
int i = 65; char c = i; int *p = &i; char* pc = &c; cout << pc << endl;
c++ type-conversion
c++ ×1
type-conversion ×1