Question: Using C++ Design an Array Class for integer data using dynamic arrays Your array design should overcome the seven problems: 1. C++ does not check
Using C++
Design an Array Class for integer data using dynamic arrays
Your array design should overcome the seven problems:
1. C++ does not check whether subscripts fall outside the range of an array.
2. Elements are numbered 0,...., n-1 for array of size n.
3. An entire array cannot be input of outut at once.
4. Two arrays cannot be easily compared for equality.
5. When an array is passed to a function, the size must be passed as an additional argument.
6. One array cannot be assigned to another with operator =
7. The size of the array is fixed when allocated.
Using this solution: Creating a new type that eliminates the deficiencies in C Arrays while keeping all of their benefits with the use of Class Construct.
Create an array of 100 real numbers for testing your class.
Demonstrate ALL methods of the class
Please use //To describe which function is being implemented in the code.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
