Description
Integer is the basic data type. The integer data type occupies 2 bytes. The range of integers is -32,768 to 32,767 (-2^15 ~ (2^15)-1).
Example code
int ledPin = 13;
//create a variable integer called ‘ledPin’, and assign the value as 13.