Variables

Variables are ``containers'' that hold values.

Variables are implemented as memory cells.

Each variable has three properties:

Variables are defined by giving name, type and (optionally) an initial value.

int    i, j, k;
int    x, y, z;
char   ch, ch1;
double length, width;

Index