-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestion2.c
57 lines (34 loc) · 956 Bytes
/
Question2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <stdio.h>
#include <stdlib.h>
#include "Questions.h"
student **create_class_list(char *filename, int *sizePtr){
student **class_list;
/*write your implementation here*/
/* finally return the created class list*/
return class_list;
}
int find(int idNo, student **list, int size)
{
/*write your implementation here and update the return accordingly*/
return -1;
}
void input_grades(char *filename, student **list, int size)
{
/*write your implementation here*/
}
void compute_final_course_grades(student **list, int size)
{
/*write your implementation here*/
}
void output_final_course_grades(char *filename, student **list, int size)
{
/*write your implementation here*/
}
void withdraw(int idNo, student **list, int* sizePtr)
{
/*write your implementation here*/
}
void destroy_list(student **list, int *sizePtr)
{
/*write your implementation here*/
}