71
king
7y

Understanding recursion requires understanding recursion first.

Comments
  • 0
    Your recursion requires a base case, otherwise you will hit a runtime error :O

    Oooorrr you could just make an infinite loop.
  • 0
    f (int n=0) => f (n++);
    f ();
Add Comment