clean the work files
This commit is contained in:
parent
10fe1747d3
commit
9d9eb77688
@ -1,14 +1,17 @@
|
|||||||
#include "stdio.h"
|
#include "stdio.h"
|
||||||
|
|
||||||
void print(char *text) {
|
void print(char *text)
|
||||||
|
{
|
||||||
printf(text);
|
printf(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
void println(char *text) {
|
void println(char *text)
|
||||||
|
{
|
||||||
newline();
|
newline();
|
||||||
print(text);
|
print(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
void newline() {
|
void newline()
|
||||||
|
{
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
@ -61,7 +61,6 @@ int main()
|
|||||||
|
|
||||||
display_menu();
|
display_menu();
|
||||||
|
|
||||||
|
|
||||||
newline();
|
newline();
|
||||||
|
|
||||||
// scanf("\nenter the option: ", selected);
|
// scanf("\nenter the option: ", selected);
|
||||||
@ -104,32 +103,33 @@ void menu(int menu)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void display_menu()
|
||||||
void display_menu() {
|
{
|
||||||
printf("\n");
|
printf("\n");
|
||||||
read_file("./../note/section1.txt");
|
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...");
|
println("Goodbye...");
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user