has it occurred to anyone that a simple std::cout might print a value in hex format when it is supposed to format just a decimal(like an integer)?
std::cout
for e
You probably have set std::cout to print hex in prior in the context of your code but forget to reset. For example:
std::cout<
so you have to do like the following
to print in decimal form.