scanf ("%i",&AGE);

This statement will read in a value to a
running program.  

The %i means that the value should be an integer.

The & is the Address Operator.  The value read in
will be stored in memory at the address of the variable
AGE.