Microsoft interview question

The differences between recursive and iterative implementations?

Interview Answers

Anonymous

Jul 7, 2010

Explain from the compiler's computation point of view

Anonymous

Aug 25, 2010

Recursive allocates space on stack to load the function for each call Iterative works on the same memory just walks thru the memory variable space.