integer

An integer is a number without a fractional component. Simply put, the integer data type is used to represent whole numbers.
Integers can be further classified as signed and unsigned. Signed integers can store both negative and positive values. Unsigned integers can only store positive values. The negative of an unsigned quantity is computed by subtracting its value from 2^n, where n is the number of bits in the promoted operand.