class row { private: int len, *ptr; public: void printRow(char *label); }; // class row void row::printRow(char *l) { cout << l; for(int i=0; i