/*
The goal os this lab is to help an instructor manage students grades
*/
//do necessary includes
//put necessary functions: add one function to each one of the available options
int main()
{
/*1- create a linked list of nodes having three fields:
name: for student name
grade: for student grade
link: pointer to next node
*/
/*2- make a while loop ending when user answer the question "Do you want to continue?" node.
The loop continues otherwise */
/*3- each iteration the instructors have to choose one of the option available in your program.
For now, we will consider those following options:
a- Adding a node (given student name and grade) - to make it simple no students have same name
b- Removing a node (given student name)
c- Checking is there are students who got 20/20 and print out their names
d- Checking if there are students who got less than 12 and print out their names
e- Add one bonus point to each student
f- destruct the whole list
*/
return 0;
}


0 comments