I know how to use multi dimentional arrays and dynamic arrays..
but now i need both of them together..
string* foo = new string[2][2];
for instance gives off a bunch of errors...
I tried several different things but i can't get it to work. and yes i've googled..
Also I don't want to use a vector because i hear they are very memory consuming (need good memory effieciency)
string **foo = new string*[2]; //allocate an array of string pointers
for( int i = 0; i < 2; i++ )
foo[i] = new string[2]; //allocate an array of strings for each pointer
//foo at i is a string* because foo is a string**
//remember to deallocate all of these at the end!