Question: Question 1 (2 points) What fundamental technology allows for recursive function calls? Question 2 (2 points) Consider the following C function: struct example int value

Question 1 (2 points) What fundamental technology allows for recursive function calls? Question 2 (2 points) Consider the following C function: struct example int value void example() { struct example x; struct example *y = malloc(sizeof(struct example)); x.value = 10; y-> value = = 20; } At the end of this function, what memory has leaked? O nothing Oy OX&Y
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
