c Explain the function fcn where n is a positive integer I
c) Explain the function f_c(n) where n is a positive integer.
}
}
Inthepart c),draw the stack activation records when function is executed for ret = f_c(100); for the first three calls to f_c1. Since you are to submit your answer as a- text file, use so-called ASCII graphics, which should look like the following, for some other (“imaginary”) functions g and h:
Solution
 +--------------------------------+
 | f_c1(c=4,b=5,n=100)   |
 +--------------------------------+
 +---------------------------------+
 | f_c1(a=4,c=5,n=100)   |
 +--------------------------------+
 +--------------------------------+
 | f_c1(c=4,b=7,n=100)   |
 +----------------------------------+
 +----------------------------------+
 | f_c1(a=1,c=7,n=100) |
 +----------------------------------+
 +----------------------------------+
 | f_c1(a=1,c=13,n=100) |
 +----------------------------------+
 +----------------------------------+
 | f_c1(a=1,c=25,n=100)    |
 +---------------------------------+
 +-----------------------------------+
 | f_c1(a=1,c=50,n=100) |
 +----------------------------------+
 +----------------------------------+
 | f_c1(a=1,b=100,n=100) |
 +-----------------------------------+
 +----------------------+
 | f_c(n=100)        |
 +----------------------+
 +----------------------+
 | main                 |
 +----------------------+

