tell the computer the box's name and what we want to put inside
We must tell the computer that we are about to use a variable with some name before we use it. This action is called a declaration. And we can only declare a variable with the same name once per scope, (we'll talk about that later). We can declare one with this syntax: <type> <variable_name>;. For example:
int some_integer;// Declaring some_integer as a integerchar c;//Declaring c as a characterfloat f;//Declaring f as a 32-bit, single-precision floating point value