how do you leave a function in the middle? i have a condition for leaving the function, but i dont know how to actually leave.
ex:
void a(int &num){
if (num > 100){
// leave function
}
num += a(num + 1);
}
i want to end the recursion, and i have to keep the function a void
areturnsvoid, how can you donum += a(anything);? And how doesnum+1bind to a non-const reference? Is there anint a(int num);somewhere, so that last call isn't directly recursive? Not that it matters in this case because I don't think it affects the answer, but in general you get better answers asking about real code. – Steve Jessop Dec 2 '10 at 21:17