Didn't follow the thread, so sorry if this is a repeat.
Dave Sinkula
long time no c
5,058 posts since Apr 2004
Reputation Points: 2,780
Solved Threads: 314
this one ain't mine, it's Monzy's and it's great:
Your mom circulates like a public key,
Servicing more requests than HTTP.
She keeps all her ports open like Windows ME,
Oh, there's so much drama in the PhD.
ninjaneer
Junior Poster in Training
56 posts since Jun 2008
Reputation Points: 10
Solved Threads: 6
or this one: poem();
string poem( )
{ static int c = 0, a;
if(c<3)
{c++;
std::cout << "roses are red\n";
return poem();
}
else
{return "I'm recursive";}
}
ninjaneer
Junior Poster in Training
56 posts since Jun 2008
Reputation Points: 10
Solved Threads: 6