Course Solutions Uncategorized (Solved) : C Code Lets Enter Display Delete Student Record Need Implement Function Prints Average Gra Q33096587 . . . .

(Solved) : C Code Lets Enter Display Delete Student Record Need Implement Function Prints Average Gra Q33096587 . . . .

 

I have a C++ code that lets me enter, display and delete astudent record. I need to implement a function that prints theaverage grade score of the students I input.

Below is my code and a picture of how my code looks rightnow.

#include<iostream>
#include<stdlib.h>
using namespace std;
//Node Declaration
struct node
{
   string name;
   string id;
   int score;
   node *next;  
};
//List class
class list
{
       private:
       //head represents start node, tailrepresent last node
       node *head, *tail;
       public:
       list()
       {
           head=NULL;
           tail=NULL;
       }
       void createnode(string name,stringid,int score)
       {
           //Create a newnode temp with passed data
  

OR

PayPal Gateway not configured

OR

PayPal Gateway not configured

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post