What is the output of this piece of code?
int8_t a=200; uint8_t b=100; std::cout<<"a="<<(int)a; std::cout<<", b="<<(int)b;
a=200, b=100
a=200, b=-156
a=-55, b=100
a=-56, b=100