Before they can be used, variables need to be declared. A variable declaration must include a type and a variable name.

 

Examples:

Int x; // will be using an integer called x

Int y, result; // y and result are both integers

char z; // z is a character