9 lines
200 B
C
9 lines
200 B
C
#include "stdlib.h"
|
|
#include "./student_tag.h"
|
|
|
|
void display();
|
|
void search(int mark);
|
|
void find_largest_average();
|
|
void find_failed_students();
|
|
void add_new(struct student_tag student);
|
|
void quite(); |