In this project I will be practicing the power of using a struct to create a template of a student management system and a hash table to store each student in their own element. I a collision occure then the linked list will get involved to store the student in seperate list attached to the collided number.
- Ubuntu 20.04 LTS - Operating system reqd.
- Some coffee ☕
- Ebrahim Rhode - @DaBetterman
This project is licensed under the MIT License
ebrahim@ebrahim-desktop:~/C_Project/Student_Management_System$ gcc main.c create.c -g -o a
ebrahim@ebrahim-desktop:~/C_Project/Student_Management_System$ ./a
What is your Name
Tony
What is your Surname
Stark
What is your Age
45
What is your Address
77 Avengers Tower, New York
What is your Sex
Male
written successfully
ebrahim@ebrahim-desktop:~/C_Project/Student_Management_System$ ./a
What is your Name
Mia
What is your Surname
The Bee
What is your Age
9
What is your Address
833 Beehive Avenue, Treeville
What is your Sex
Female
written successfully
ebrahim@ebrahim-desktop:~/C_Project/Student_Management_System$
- ChatGPT
- ALX Peers