Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a c++ program to manage a simple shopping cart. Use a global variable totalcost (set it to 0 at the beginning and int data
Write a c++ program to manage a simple shopping cart. Use a global variable totalcost (set it to 0 at the beginning and int data type) to store the the cost of items in the cart. Implement void functions to add items with their respective prices to the cart addItemToCart (accept int data type of item price). Test your program by adding items to the cart and print the final total cost. In main: the function is called multiple times. At the end, it prints the total cost
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started