recursive posting<

The Pentium Guy

Diamond Member
Jan 15, 2005
4,327
1
0

Recursive adj. See Recursive
Recursion n. A formula that generates the successive terms of a recursion.

:).
 

The Pentium Guy

Diamond Member
Jan 15, 2005
4,327
1
0
recursion_call(i){
__if (i=0) return;
__recursion_call(i+1);
__}
How about recursion_call(i-1) so that we don't get stuck in an infinate loop? Or else I could just do
void rec()
{
while(true)
{
rec();
}
}

Which would be scary