Logo - Recursive Procedures



In a recursive procedure, there will be a recurrence call of the procedure within the procedure. Let us consider the following code −

The procedure spiral_recur has been called from the procedure body itself. The following screenshot shows the execution and output of the code.

Recursive Procedures
Advertisements