CJCoding With Joseph
15per day

Dynamic Array Member

Create a class ArrayHolder with private int* arr and int size.

Requirements:
1. Constructor allocates an array of size
2. Destructor frees the array
3. setValue(int index, int value)
4. getValue(int index) returns value

Do NOT write a main function.

Expected Output:

7
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.