Create a simple c++ program for a online shopping situation.
The scenario is to have a web shop, customers, products, orders and invoices.
The shop will list the products available.
The customer logs in select the product and adds it to their order.
Once customer is finished an invoice with random number is created for the order.
10 products should be used in this program and should be stored in a array.
Products can be added and deleted from an order
Only one customer at a time need be…
