How to convert an integer into an unsigned integer?
Well, if I know what you mean, it must be relevant. Int type is stored in memory in the form of complement, and unsigned type is stored in normal form, so their values range is the same, but unsigned type is positive, so you only need -20' s complement to convert it into decimal number.