Variable Declarations
Variables must be declared before they can be used.
Variables are declared in the declaration statements in a function. The declaration of a variable consists of its name and its type of value.
float inches;
float cm;
or
float inches, cm;