fixing project
i have my code for the project and it has one problem only
the problem in the print function
first of all, the following should be a pointer in Customer class:
Product *item;
Now, the Print function, in general, should look something like this:
void Print(Customer *h)
{
while(h)
{
//here you should print all the details of a customer
Product * p = h->item;
while(p)
{
//here you should print a product’s details
//move to the next product as below:
p=p->next;
}
//move to the next customer as below:
h=h->next;
}
}
Do you need a similar assignment done for you from scratch? We have qualified writers to help you. We assure you an A+ quality paper that is free from plagiarism. Order now for an Amazing Discount!
Use Discount Code "Newclient" for a 15% Discount!
NB: We do not resell papers. Upon ordering, we do an original paper exclusively for you.
