0

What is recursion?

I know recursion is function calling itself. but I need to know it's deep

29th Nov 2017, 4:22 AM
Ponraj Hbk
Ponraj Hbk - avatar
2 Antworten
+ 3
function bids(){ cout "hello\n"; bids(); } As the function bids gets called it will call it's innerbids and this just goes on forever
29th Nov 2017, 4:31 AM
᠌᠌Code X
᠌᠌Code X - avatar
0
thanks
29th Nov 2017, 4:35 AM
Ponraj Hbk
Ponraj Hbk - avatar