I have the following class
class Node { int key; Node**Nptr; public: Node(int maxsize,int k); }; Node::Node(int maxsize,int k) { //here i wan
Suppose you want to create matrix of 3 rows and 4 cols then,
int **arr = new int * [3]; //first allocate array of row pointers for(int i=0 ; i