Integer Vulnerability

Under Contruction

Enjoy a recursive tree blowing in the wind while you wait.
Sorry your browser doesn't support HTML5's <canvas> tag. Please view this page using a modern browser such as Google Chrome.

In computer programming, an integer overflow occurs when an arithmetic operation attempts to create a numeric value that is too large to be represented within the available storage space. For instance, adding 1 to the largest value that can be represented constitutes an integer overflow. The most common result in these cases is for the least significant representable bits of the result to be stored (the result is said to wrap). On some processors like GPUs and DSPs, the result saturates; that is, once the maximum value is reached, attempts to make it larger simply return the maximum result.

wikipedia