Types of recursion?

Answer:
Direct:

int foo ()
{ ... foo (); ... }

Indirect:

int foo ()
{ ... bar (); ... }

int bar ()
{ ... foo (); ... }
First answer by NevemTeve. Last edit by NevemTeve. Contributor trust: 172 Question popularity: 0 [recommend question].