I am in the midst of debugging someone's code, and I have code like
int i = their_val;
std::cout << "output: " << i << std::endl;
When I look at the log output I see lines like
output: a
Should this happen? Is something changing the cout formatting or could it be something odder?