class realscalar { public: unsigned int *s; realscalar(); }; realscalar::realscalar() //constructor for realmp {s = new unsigned int [zprecpad];} //realvectormp is a 2-dimension array of integers class realvector { public: unsigned int * *v; //int vmp[size][size]; realvector(); //this is a default constructor (has no argument) }; //won't give size correctly unless explicit //numbers used. vmp[size][size] won't match //type of int * *p. Also, I get crash with //int * *. realvector::realvector() //constructor {int i; v = new unsigned int * [zmaxsizepad]; for (i=0;i