code:
void example()
{
for(int i=0; i<10; i++)
{
if(condition 1)
{
line 1;
line 2;
line 3;
example() //calling the same function
line 4;
line 5;
}
}
}
-------------------
My question is if the code looks like that,
when do line 4 and 5 get executed??
I am pretty sure line 4 and 5 get executed because if i remove them, the programme fails..