sbn.cassigment/work1/function.c

33 lines
414 B
C
Raw Normal View History

2020-07-31 17:49:59 +07:00
#include "stdio.h"
#include "stdio.h"
#include "./student_tag.h"
2020-08-01 22:20:12 +07:00
void display()
{
2020-07-31 17:49:59 +07:00
printf("display...");
}
2020-08-01 22:20:12 +07:00
void search(int mark)
{
2020-07-31 17:49:59 +07:00
printf("search mark...");
}
2020-08-01 22:20:12 +07:00
void find_largest_average()
{
2020-07-31 17:49:59 +07:00
printf("find largest average...");
}
2020-08-01 22:20:12 +07:00
void find_failed_students()
{
2020-07-31 17:49:59 +07:00
printf("find failed students...");
}
2020-08-01 22:20:12 +07:00
void add_new(struct student_tag student)
{
2020-07-31 17:49:59 +07:00
printf("add new...");
}
2020-08-01 22:20:12 +07:00
void quite()
{
2020-07-31 17:49:59 +07:00
exit(1);
}