Question: a. Create a new program called Sum.c, and type in the following two functions. int FunctionOne (int m, int n) { if (m == n)

a. Create a new program called Sum.c, and type in the following two functions.

int FunctionOne (int m, int n)

{

if (m == n)

{

return n;

}

else

{

return m + FunctionOne (m+1, n);

} }

int FunctionTwo (int m, int n)

{

if (m == n)

{

return n;

} else

{

return n * FunctionTwo (m, n-1);

} }

b. Write a few lines in main() to test these functions. Invoke them a couple of times, with a few different values, and see what you get. By some combination of testing and examination of the code, figure out what these functions do, and give them more meaningful names. Add comments that describe their function abstractly.

c. Add a prinf statement to the beginning of both functions so that they print their arguments each time they are invoked. This is a useful technique for debugging recursive programs, since it demonstrates the flow of execution.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!