c++ - int to unsigned int conversion - Stack Overflow
I'm just amazed to know that I can't convert signed to unsigned int by casting! int i = -62; unsigned int j = (unsigned int)i; I thought I already knew this since I started to use casts, but ......