Ganzzahltyps
Ganzzahltyps, often translated as integer types, are fundamental data types in computer programming used to represent whole numbers. These types do not include any fractional or decimal components. The specific range of values an integer type can hold depends on its size, which is typically measured in bits. Common integer types include signed integers, which can represent both positive and negative whole numbers, and unsigned integers, which can only represent non-negative whole numbers. The most basic integer type is often referred to as `int`.
The size of an integer type directly impacts the range of values it can store. For instance,