Updated files work and manage
This commit is contained in:
parent
9d9eb77688
commit
46cd2556bc
@ -2,26 +2,32 @@
|
||||
#include "stdio.h"
|
||||
#include "./student_tag.h"
|
||||
|
||||
void display() {
|
||||
void display()
|
||||
{
|
||||
printf("display...");
|
||||
}
|
||||
|
||||
void search(int mark) {
|
||||
void search(int mark)
|
||||
{
|
||||
printf("search mark...");
|
||||
}
|
||||
|
||||
void find_largest_average() {
|
||||
void find_largest_average()
|
||||
{
|
||||
printf("find largest average...");
|
||||
}
|
||||
|
||||
void find_failed_students() {
|
||||
void find_failed_students()
|
||||
{
|
||||
printf("find failed students...");
|
||||
}
|
||||
|
||||
void add_new(struct student_tag student) {
|
||||
void add_new(struct student_tag student)
|
||||
{
|
||||
printf("add new...");
|
||||
}
|
||||
|
||||
void quite() {
|
||||
void quite()
|
||||
{
|
||||
exit(1);
|
||||
}
|
@ -32,5 +32,4 @@ int main()
|
||||
|
||||
// show menu
|
||||
menu();
|
||||
|
||||
}
|
@ -15,8 +15,6 @@ void menu()
|
||||
printf("\n(6) Quit program\n\n");
|
||||
}
|
||||
|
||||
|
||||
|
||||
void choose_menu(int menu)
|
||||
{
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user