integer wrapping

Integer wrapping refers to the behavior in computer programming where the value of an integer exceeds its maximum limit (e.g., 32-bit or 64-bit) and instead of causing an error or overflow, the value wraps around to the minimum value or vice versa.

Requires login.