I used to implement something acting as a very large integer using char. But it suddenly occurred to me that I can use unsigned int, which is more straight-forward to implement.
For example, I use every unsigned int to store at most 9 999 999, and make use of the most significant digit as a buffer to increment to the "next" unsigned int.
Thus, I can use 4 byte for 7 digits, instead of 4 digits while using char.
So, why do not we implement a big integer class with unsigned int?