标签: c++ character
为什么此代码在控制台中输出字符a?
char c = '\0'; std::cout<<c<<std::endl;
并且此代码输出为0?
std::cout<<(int)c<<std::endl;