What will the unsigned int contain when I overflow it? To be specific, I want to do a multiplication with two unsigned ints and want to know what will be in the unsigned int after the multiplication is finished?
unsigned int someint = 253473829*13482018273;
UINT_MAX + 5rolls over and becomes 4. – Joachim Pileborg Feb 8 at 13:15