Create a class DoubleSubscriptedArray,
the class should be able to create an array of any number of rows and any number of columns with dynamic memory allocation. The class should supply operator()
to perform double-subscripting operations. For example, in a 3-by-5 DoubleSubscriptedArray called a, the user
could write a( 1, 3 ) to access the element at row 1 and column 3. The underlying representation of the double-sub-scripted array should be a single-subscripted array of integers with rows * columns number of elements. Function operator()
should perform the proper pointer arithmetic to access each element of the array. There should be two versions of operator()—
one that returns int & so an element of a DoubleSubscriptedArray can be used as an lvalue and one that returns const
int & so an element of a const DoubleSubscriptedArray can be used as an rvalue. The class should also provide the following
operators: ==, !=, =, << (for outputting the array in row and column format) and >> (for inputting the entire array contents).

Recommended Answers

All 2 Replies

this from the book how to program with c++ by deitels but i don't know how to solve

Please read this.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.