Question: Figure 2.1, 2.2 and 2.3 show program segments which contain user-defined function. Analyze all the program segments and trace the process in each function. Your

 Figure 2.1, 2.2 and 2.3 show program segments which contain user-defined
function. Analyze all the program segments and trace the process in each
function. Your analysis must include the followings: (a) By providing appropriate initial

Figure 2.1, 2.2 and 2.3 show program segments which contain user-defined function. Analyze all the program segments and trace the process in each function. Your analysis must include the followings: (a) By providing appropriate initial value of each variable, demonstrate the process described in function definition in each Figure 2.1, 2.2 and 2.3. (b) At the end of each program segment in Figure 2.1, 2.2 and 2.3, trace the final value of all variables based on input given in (a) (c) Discuss and compare the similarity/difference between function definitions written in each figure and justify why such final values are obtained. Relate your answer with the final value of variables from (b) in your discussion. void exchangel (int numi, int num2); // function prototype int main() { exchangel (num1, num2); // function call ) void exchangel (int numi, int num2) { // function definition int temp=10; temp = numl; num1 = num; num2 = temp; } Figure 2.1 void exchange2 (int * num3, int *num 4); // function prototype int main() { exchange 2 (&num3, &num4); // function call } void exchange2 (int *num3, int *num 4) { // function definition int temp=10; temp = *num3; *num3 = ++*num4; *num4 = temp Figure 2.2 void exchange 3 (int num5 [], int num6[]); // function prototype int main() { exchange 3 (nums, num6); // function call } void exchange (int *num5, int *num) { //function definition int i, temp; for(i=0;i

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!