Question: 1) Suppose that a= 2 and n = 5 for the following code: a) Draw the function calling sequence step by step. b) Show
1) Suppose that a= 2 and n = 5 for the following code: a) Draw the function calling sequence step by step. b) Show changes to the run-time stack during execution. c) What is the output of this function? d) What is the functionality of this function? Answer int fun (int a, int n) { if(n==0) return 1; else return a* fun (a, n-1);
Step by Step Solution
3.51 Rating (154 Votes )
There are 3 Steps involved in it
Lets break down the code step by step int funint a int n if n 0 return 1 else return ... View full answer
Get step-by-step solutions from verified subject matter experts
