In the following code, it appears that std::cout
does not print the variable of type uint8_t properly.
int main() {
uint8_t var = 16;
std::cout << "value: " << var << std::endl;
}
output:
value:
I don't have problem with similar uintX_t types.
I know I'm missing something here, but I can't figure what it is.