What does c++ unsigned plastic mean?
Unsigned integers are actually 0 and positive integers, and the binary digits are the same. If there is a signed number stored, one bit needs to be taken out to represent the positive and negative, so one bit is missing to represent the number, and the range of the number is small, while the unsigned number is not limited. All binary bits can represent numerical values, so the range of unsigned integers is larger than that of ordinary integers.