Answered step by step
Verified Expert Solution
Question
1 Approved Answer
-Make a constructor bag(int n) that receives an integer and causes array pA to be created with n entries. n is stored into a new
-Make a constructor bag(int n) that receives an integer and causes array pA to be created with n entries. n is stored into a new integer called bagSize. Make the size of the array 1000.
-Make a method in c++ called int remainingSpace() that returns the amount of space left inside of the above arrayed object.
Use the following pointer syntax to create the arrays: point *pA = new point[n];
Thanks in advance!
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