[algogeeks] Re: What is the Output?? and How??

2011-09-07 Thread htross
can u please explain this code or give the link to the thread u mentioned before??? On Sep 7, 10:35 pm, nagarajan naga4...@gmail.com wrote: please can u explain.. or copy the explained content??? On Wed, Sep 7, 2011 at 11:03 PM, sukran dhawan sukrandha...@gmail.comwrote: its already

[algogeeks] Re: What is the Output?? and How??

2011-09-07 Thread Ankuj Gupta
http://groups.google.com/group/algogeeks/browse_frm/thread/274f63b24388599d/da635c4f409d5e1b?lnk=gstq=print%28max%28x%2B%2B%2Cy%29%2Cx%2Cy%29%3B+#da635c4f409d5e1b On Sep 8, 2:04 am, htross htb...@gmail.com wrote: can u please explain this code or give the link to the thread u mentioned

[algogeeks] Re: What is the output and how ???

2011-08-26 Thread SAMMM
The O/P is 0,1,2,0, But how -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googlegroups.com. For

Re: [algogeeks] Re: What is the output and how ???

2011-08-26 Thread Suraj Fale
o/p:- 0,1,2,0.. iIts simple stack concepts... during each recursive call it will goes on to store 2,1,0 and then *it will print 0* . call it agin with -1 then ... its false then* it will print 1* and again it will become 0... its false so it takes value from stack which is 2.. so *it will

Re: [algogeeks] Re: What is the output and how ???

2011-08-26 Thread kARTHIK R
Here is a simpler way to understand. fun(0) = prints nothing fun(1) = f(0) + print 0 + fun(-1) = 0 fun(2) = fun(1) + print 1 + fun (0) = 0 1 fun(3) = fun(2) + print 2 + fun(1) = 0 1 2 0 Karthik R, RD Engineer, Tejas Networks. On Fri, Aug 26, 2011 at 1:02 PM, Suraj Fale surajfa...@gmail.com

[algogeeks] Re: What is the output and how ???

2011-08-26 Thread rahul sharma
yeah...just clear concept of recursion...its simple form test ur c skilss..(function.) On Aug 26, 1:22 pm, kARTHIK R k4rth...@gmail.com wrote: Here is a simpler way to understand. fun(0) = prints nothing fun(1) = f(0) + print 0 + fun(-1) = 0 fun(2) = fun(1) + print 1 + fun (0) = 0 1 fun(3)