Question: 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

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? int fun(int a, int n){ if (n==0) return 1 ; else return a fun (a,n1)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
