CJCoding With Joseph
15per day

Dynamic 2D Array

Create a class Matrix with private int** data, int rows, and int cols.

Requirements:
1. Constructor allocates a rows x cols array and initializes values to 0
2. Destructor frees all memory
3. setValue(int r, int c, int value)
4. getValue(int r, int c) returns the value

Do NOT write a main function.

Expected Output:

5
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.