0
What is recursion?
I know recursion is function calling itself. but I need to know it's deep
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
0
thanks