Recursion (computer science): Difference between revisions

Content deleted Content added
m Added link
m No need for static
Line 186:
}
</syntaxhighlight>
| VALIGN=TOP | <syntaxhighlight lang=C"c">
static int fac2(int n) {
// assert(n >= 2);
if (n == 2)