Developing A Program
Developing A Program
DEVELOPING A PROGRAM….
Declaration is the process of identifying variables according to their TYPE.
Variables can be categorised as integers, character or strings, and real.
e.g
START
Input int a;
Input char*p;
STOP.
Note:: the space left before writing input was reserved for indentation.