Variable (name, value, data type, size)
A memory location whose content may change during program execution.
Must be declared before it can be used.
May not be automatically initialized.
If new value is assigned, old one is destroyed.
can obtain values with :
an assignment statement
an input (read) statement.
Example 2-12
double amountDue;
int counter;
char ch;
int x, y;