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
with a little help of math
#include int main(){ int a = -1; unsigned int b; b = abs(a); }