#include using namespace std; class row { private: int len, *ptr; public: // constructor row(int n=3) { len = n; ptr = new int[n]; // use [] to make ptr point to an ARRAY of ints for(int i=0;i