General Requirement Solve Hand Try Solve Without Using Compiler Q43894822
General requirement is to solve by hand and try to solve withoutusing a compiler

This question relies of the following structure definition. typedef struct Student int student_id; float * quizzes; } Student; There are C number of courses and each course has N number of students and each student has to take Q number of quizzes. You can visualize it by the following picture. Course[0] student[0] Student[N-1] q[0] q[0] Course[1] q[0] q[0] q[Q-1] q10-11 q[Q-1] Course[2] 910-1) Course[C-1] student[0] Student[N-1] q[0] q[0] 910) q[Q-11 910-11 q[Q-1] [Q-11 a) Write a function that takes C, N, and Q and returns appropriate memory to store the data. //You don’t have to fill-up the memory with any data. Just allocate the memory. AllocateCourse_Students(int C, int n, int Q{ b) Write a function to free-up the memory. Provide appropriate parameter for the function. Show transcribed image text This question relies of the following structure definition. typedef struct Student int student_id; float * quizzes; } Student; There are C number of courses and each course has N number of students and each student has to take Q number of quizzes. You can visualize it by the following picture. Course[0] student[0] Student[N-1] q[0] q[0] Course[1] q[0] q[0] q[Q-1] q10-11 q[Q-1] Course[2] 910-1) Course[C-1] student[0] Student[N-1] q[0] q[0] 910) q[Q-11 910-11 q[Q-1] [Q-11 a) Write a function that takes C, N, and Q and returns appropriate memory to store the data. //You don’t have to fill-up the memory with any data. Just allocate the memory. AllocateCourse_Students(int C, int n, int Q{ b) Write a function to free-up the memory. Provide appropriate parameter for the function.
Expert Answer
Answer to General requirement is to solve by hand and try to solve without using a compiler …
OR