Question: Please answer in C language. 5. Write few lines of code that creates two arrays with malloc. Then write a statement that can create a

Please answer in C language.
5. Write few lines of code that creates two arrays with malloc. Then write a statement that can create a memory leak. Discuss why you think your code has a memory leak by drawing the status of the memory after you use malloc and the line of the code you claim that creates a memory leak. 6. This question relies of the following structure definition struct Student int student_id; float *quizzes; Complete the following function that takes 2 int indicating number of students N and number of quizzes Q. The function allocate appropriate memory for N Students and for each student it should allocate memory for Q quizzes. Then take input for all the data and return the pointer. struct Student* Allocate Students( int N, int ) { Consider you are calling the function by the following statement: struct Student students = Allocate Students(5, 2); free_up_memory (students); l/write this function on the right side to free up the memory
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
