Compare commits

..

No commits in common. "46cd2556bcf86ae16398d03bde94528df03624c8" and "10fe1747d3b63ca1533ce55b2d3feae8d1e16948" have entirely different histories.

5 changed files with 29 additions and 35 deletions

View File

@ -1,17 +1,14 @@
#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

@ -61,6 +61,7 @@ int main()
display_menu();
newline();
// scanf("\nenter the option: ", selected);
@ -103,33 +104,32 @@ 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,32 +2,26 @@
#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,4 +32,5 @@ int main()
// show menu
menu();
}

View File

@ -15,6 +15,8 @@ void menu()
printf("\n(6) Quit program\n\n");
}
void choose_menu(int menu)
{
@ -34,7 +36,7 @@ void choose_menu(int menu)
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;