So, where is a problem?
vector<string> *Table;
Table = new vector<string>[2];
Table[0].push_back("Aaa");
Table[0].push_back("Bbb");
Table[0].push_back("Ccc");
Table[1].push_back("Ppp");
Table[1].push_back("Qqq");
cout << "\n" << Table[0][0];
cout << "\n" << Table[0][1];
cout << "\n" << Table[0][2];
cout << "\n" << Table[1][0];
cout << "\n" << Table[1][1];
Table[0][0]="AAAAAA";
....
Reputation Points: 2136
Solved Threads: 1228
Posting Genius
Offline 6,527 posts
since Oct 2008