Compare commits

...

2 Commits

Author SHA1 Message Date
Sambo Chea 46cd2556bc Updated files work and manage 2020-08-01 22:20:12 +07:00
Sambo Chea 9d9eb77688 clean the work files 2020-08-01 22:10:24 +07:00
5 changed files with 35 additions and 29 deletions

View File

@ -1,14 +1,17 @@
#include "stdio.h"
void print(char *text) {
void print(char *text)
{
printf(text);
}
void println(char *text) {
void println(char *text)
{
newline();
print(text);
}
void newline() {
void newline()
{
printf("\n");
}

View File

@ -58,9 +58,8 @@ int main()
printf("Course of units: %d", first->course_info.no_of_units);
read_file("./../data/welcome.txt");
display_menu();
display_menu();
newline();
@ -104,32 +103,33 @@ void menu(int menu)
}
}
void display_menu() {
void display_menu()
{
printf("\n");
read_file("./../note/section1.txt");
}
void display_students() {
void display_students()
{
}
void search_student() {
void search_student()
{
}
void find_maximum() {
void find_maximum()
{
}
void find_failed() {
void find_failed()
{
}
void update_file() {
void update_file()
{
}
void exit_program() {
void exit_program()
{
println("Goodbye...");
}

View File

@ -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);
}

View File

@ -32,5 +32,4 @@ int main()
// show menu
menu();
}

View File

@ -15,8 +15,6 @@ void menu()
printf("\n(6) Quit program\n\n");
}
void choose_menu(int menu)
{
@ -35,8 +33,8 @@ void choose_menu(int menu)
find_failed_students();
break;
case MENU_5:
struct person_tag info = {"1","Sambo"};
struct person_tag info = {"1", "Sambo"};
struct student_tag std = {.student_info = info};
add_new(std);
break;