Question
Develop a class to represent an array of integers. The member variables include: 1- An integer to represent the size of array. 2- an integer
Develop a class to represent an array of integers.
The member variables include:
1- An integer to represent the size of array.
2- an integer pointer to represent the address of the first element of the array.
The user is allowed to create an array at run-time using this class.
this class include a default constructor where the user will be asked to input the size of the array
Also include the following methods:
1- A method that adds the contents of array. Give it a proper name and specify the number and type or arguments (if you need any).
2- A method to print the elements of the array Give it a proper name and specify the number and type or arguments (if you need any).
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