Recursion
Usama Malik
M FaiZan
M Faraz
Recursion:
A function is called recursive when it calls itself
There is always if statement in recursive function .To force
the function to return without recursive call being
executed otherwise the function goes in infinite loop.
Advantages
.It Decreases the Size of Coding
.Recursion takes lot of space.
.Difficult to trace for debugging for programmers.
.It must have if statement to stop recursive call Otherwise Function Will never
return.
.Its Uses more Processor time.
Disadvantages of Recursion
Any Question???

Recursion