Advertisements
Advertisements
Question
Define Recursive method.
Definition
Solution
- It is a method designed in such a way that it calls itself in its body. It is used for repetitive operations.
- Example:
int fact(int n) { return (n * fact (n -1)); }
shaalaa.com
Is there an error in this question or solution?
Chapter 5: User - Defined Methods - EXERCISES [Page 337]