Technology
 

Integer

From Programmer's Wiki

Called "int" in programming. Integers may only be numbers and don't support decimals. An integer takes 32 bits in the system memory, and supports numbers from -231 to 231-1.

Normally, integers are declared like this:

int example=8;

This integer gets the name example and the value 8.