REMOVE
Â
SYNTAX:
Â
PROCEDURE REMOVE ( VAR L : Â LIST OF GENERIC;
                                             P         : INTEGER );
Â
Â
The remove procedure removes an element from a particular position in a list.
Â
Parameters :
Â
a) L is the list value from which an element is to be removed.
b) P is an integer giving the position of the element in L to be removed.
Result : L is modified by removing the element found at the specified position P.
Â
Conditions : 1 Â P Â SIZEOF(L)