i know how to create a single-dimensional, dynamically defined array
 string *names = new string[number]; //number specified by the user
however, when i try to make it multidimensional
 string *names = new string[number][number]; //doesn't work
it doesn't work. what gives? i found this http://www.cplusplus.com/forum/beginner/63/ but am completely confused by what they are saying. anyone care to explain? thanks so much.
 
     
    