DEV Community

Cover image for Integer overflow in C and Rust
Guilherme Suzuki
Guilherme Suzuki

Posted on

Integer overflow in C and Rust

Integer overflow is a phenomenon that can occur when performing mathematical operations on integers in programming languages. It happens when the result of a mathematical operation exceeds the maximum value that can be represented by a given data type.

In most programming languages, including C and Rust, the default integer data type is a signed 32-bit integer, which has a maximum value of 2,147,483,647.

To calculate the largest positive value of a signed 32-bit integer, you need to use the following formula:
2^(n-1) - 1
Where n is the number of bits used to represent the integer value. In this case, n is equal to 32, so the formula becomes:
2^(32-1) - 1
This will get you the result 2,147,483,647.

The following code demonstrates an example in C:

#include <stdio.h>

int main() {
    int x = 2147483647;
    int y = 1;
    int z = x + y;
    printf("%d + %d = %d\n", x, y, z);
    return 0;
}
Enter fullscreen mode Exit fullscreen mode

This code outputs 2147483647 + 1 = -2147483648.

Here, the sum of x and y exceeds the maximum value of a signed 32-bit integer, the integer overflows and wraps around to the minimum value, which is -2,147,483,648.

To avoid integer overflow and ensure that our programs produce correct results, we need to handle values carefully. There are several ways to do this, depending on the specific requirements of the problem and the resources that are available. Here are some strategies that you can use to prevent integer overflow:

  1. Use larger data types. If the maximum value of a 32-bit integer is not sufficient for your needs, you can use a larger data type, such as a 64-bit integer or a floating-point number. These data types can represent larger values, and they are less likely to overflow.
  2. Check for overflow before performing operations. Before performing a mathematical operation on an integer, you can check if the result is likely to overflow. If the result is larger than the maximum value of the data type, you can handle the overflow in a way that is appropriate for your program.
  3. Use modular arithmetic. Instead of using the standard arithmetic operations, you can use modular arithmetic, which is a system of arithmetic that operates on integers modulo a fixed integer. In modular arithmetic, any integer value that exceeds the modulus is wrapped around to the minimum value, which prevents overflow.
  4. Use libraries and functions that handle overflow. Many programming languages have built-in libraries and functions that can handle integer overflow automatically. For example, in C, you can use the __builtin_add_overflow and __builtin_mul_overflow functions to perform addition and multiplication operations that check for overflow and handle it properly.

In short, integer overflow is a serious issue that needs to be handled carefully in programming. By understanding how it works and using the strategies outlined above, you can prevent integer overflow and ensure that your programs produce correct and reliable results.

Top comments (1)

Collapse
 
pauljlucas profile image
Paul J. Lucas

Signed integer overflow is undefined behavior in C. It may wrap around; or it may return 0; or it may format your hard drive; so the problem is much worse that you indicate. However unsigned integer overflow is well defined and specifically wraps around. Among many other places, see here.